1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
//----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//----------------------------------------------------------------------------
namespace System.ServiceModel.Channels
{
using System;
using System.Diagnostics;
using System.Runtime;
using System.ServiceModel;
using System.ServiceModel.Diagnostics;
class BufferedRequestContext : RequestContext
{
bool delayClose;
object thisLock;
RequestContext innerRequestContext;
public BufferedRequestContext(RequestContext requestContext)
{
this.innerRequestContext = requestContext;
this.thisLock = new object();
}
public override Message RequestMessage
{
get
{
return innerRequestContext.RequestMessage;
}
}
public RequestContext InnerRequestContext
{
get
{
return innerRequestContext;
}
}
public void DelayClose(bool delay)
{
lock (this.thisLock)
{
this.delayClose = delay;
}
}
public void ReInitialize(Message requestMessage)
{
// things might ---- up here if a custom channel is using any properties on the original message...
// we should consider creating a virtual method in Dev11 on RequestContext to allow authors of custom
// channels reset the state of the request context before retrying a message.
RequestContextBase requestContextBase = this.innerRequestContext as RequestContextBase;
if (requestContextBase != null)
{
requestContextBase.ReInitialize(requestMessage);
}
}
public override void Abort()
{
lock (this.thisLock)
{
if (this.delayClose)
{
// Only delay the first attempt at Close/Abort
this.delayClose = false;
return;
}
}
this.innerRequestContext.Abort();
}
public override void Close()
{
lock (this.thisLock)
{
if (this.delayClose)
{
// Only delay the first attempt at Close/Abort
this.delayClose = false;
return;
}
}
this.innerRequestContext.Close();
}
public override void Close(TimeSpan timeout)
{
lock (this.thisLock)
{
if (this.delayClose)
{
// Only delay the first attempt at Close/Abort
this.delayClose = false;
return;
}
}
this.innerRequestContext.Close(timeout);
}
public override void Reply(Message message)
{
this.innerRequestContext.Reply(message);
}
public override void Reply(Message message, TimeSpan timeout)
{
this.innerRequestContext.Reply(message, timeout);
}
public override IAsyncResult BeginReply(Message message, AsyncCallback callback, object state)
{
return this.innerRequestContext.BeginReply(message, callback, state);
}
public override IAsyncResult BeginReply(Message message, TimeSpan timeout, AsyncCallback callback, object state)
{
return this.innerRequestContext.BeginReply(message, timeout, callback, state);
}
public override void EndReply(IAsyncResult result)
{
this.innerRequestContext.EndReply(result);
}
}
}
|