4 overrides of BeginReply
System.ServiceModel (4)
System\ServiceModel\Channels\BufferedRequestContext.cs (1)
114public override IAsyncResult BeginReply(Message message, AsyncCallback callback, object state)
System\ServiceModel\Channels\ContextChannelRequestContext.cs (1)
48public override IAsyncResult BeginReply(Message message, AsyncCallback callback, object state)
System\ServiceModel\Channels\ReplyAdapterChannelListener.cs (1)
259public override IAsyncResult BeginReply(Message message, AsyncCallback callback, object state)
System\ServiceModel\Channels\RequestContextBase.cs (1)
232public override IAsyncResult BeginReply(Message message, AsyncCallback callback, object state)
4 references to BeginReply
System.ServiceModel (4)
System\ServiceModel\Channels\BufferedRequestContext.cs (1)
116return this.innerRequestContext.BeginReply(message, callback, state);
System\ServiceModel\Dispatcher\ChannelHandler.cs (1)
1263var result = request.BeginReply(reply, ChannelHandler.onAsyncReplyComplete, state);
System\ServiceModel\Security\SecuritySessionServerSettings.cs (2)
2225return requestContext.BeginReply(response, sendCallback, this); 4779result = ((RequestContext)(object)faultContext).BeginReply(message, sendCallback, this);