4 overrides of BeginReply
System.ServiceModel (4)
System\ServiceModel\Channels\BufferedRequestContext.cs (1)
119public override IAsyncResult BeginReply(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ContextChannelRequestContext.cs (1)
43public override IAsyncResult BeginReply(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ReplyAdapterChannelListener.cs (1)
264public override IAsyncResult BeginReply(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\RequestContextBase.cs (1)
237public override IAsyncResult BeginReply(Message message, TimeSpan timeout, AsyncCallback callback, object state)
8 references to BeginReply
System.ServiceModel (8)
System\ServiceModel\Channels\BufferedRequestContext.cs (1)
121return this.innerRequestContext.BeginReply(message, timeout, callback, state);
System\ServiceModel\Channels\ReliableChannelBinder.cs (1)
3550return this.innerContext.BeginReply(message, timeout, callback, state);
System\ServiceModel\Channels\ReliableMessagingHelpers.cs (1)
1062return faultState.RequestContext.BeginReply(faultState.FaultMessage, timeout, callback, state);
System\ServiceModel\Channels\ReliableReplySessionChannel.cs (1)
1821IAsyncResult result = this.requestContext.BeginReply(this.asyncMessage, timeout,
System\ServiceModel\Channels\SecurityChannelListener.cs (3)
1429return this.innerContext.BeginReply(message, timeout, callback, state); 1466return context.BeginReply(message, timeout, callback, state); 1854return innerItem.BeginReply(faultMessage, timeout, callback, state);
System\ServiceModel\Channels\TransactionChannelListener.cs (1)
214return this.innerContext.BeginReply(message, timeout, callback, state);