1 implementation of EndTryReceive
System.ServiceModel (1)
System\ServiceModel\Channels\ReliableChannelBinder.cs (1)
515public virtual bool EndTryReceive(IAsyncResult result, out RequestContext requestContext)
9 references to EndTryReceive
System.ServiceModel (9)
System\ServiceModel\Channels\ReliableDuplexSessionChannel.cs (1)
1218if (this.Binder.EndTryReceive(result, out context))
System\ServiceModel\Channels\ReliableInputSessionChannel.cs (2)
473if (this.Binder.EndTryReceive(result, out context)) 930bool timeoutOkay = this.Binder.EndTryReceive(result, out context);
System\ServiceModel\Channels\ReliableMessagingHelpers.cs (1)
2053this.requestor.Binder.EndTryReceive(result, out requestContext);
System\ServiceModel\Channels\ReliableOutputSessionChannel.cs (1)
1057if (this.Binder.EndTryReceive(result, out context))
System\ServiceModel\Channels\ReliableReplySessionChannel.cs (1)
378if (this.Binder.EndTryReceive(result, out context))
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
1876if (channel.ChannelBinder.EndTryReceive(result, out requestContext))
System\ServiceModel\Security\SecuritySessionServerSettings.cs (2)
1012if (!this.channelBinder.EndTryReceive(result, out requestContext)) 2666this.expired = !channel.ChannelBinder.EndTryReceive(result, out this.innerRequestContext);