1 implementation of BeginTryReceive
System.ServiceModel (1)
System\ServiceModel\Channels\ReliableChannelBinder.cs (1)
281public virtual IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback,
7 references to BeginTryReceive
System.ServiceModel (7)
System\ServiceModel\Channels\ReliableDuplexSessionChannel.cs (1)
1301IAsyncResult result = this.binder.BeginTryReceive(TimeSpan.MaxValue, onReceiveCompleted, this);
System\ServiceModel\Channels\ReliableInputSessionChannel.cs (1)
364IAsyncResult result = this.Binder.BeginTryReceive(TimeSpan.MaxValue, onReceiveCompleted, this);
System\ServiceModel\Channels\ReliableOutputSessionChannel.cs (3)
1067this.Binder.BeginTryReceive(TimeSpan.MaxValue, onReceiveCompleted, this); 1080this.Binder.BeginTryReceive(TimeSpan.MaxValue, onReceiveCompleted, this); 1101this.Binder.BeginTryReceive(TimeSpan.MaxValue, onReceiveCompleted, this);
System\ServiceModel\Channels\ReliableReplySessionChannel.cs (1)
1235IAsyncResult result = this.binder.BeginTryReceive(TimeSpan.MaxValue, onReceiveCompleted, this);
System\ServiceModel\Security\SecuritySessionServerSettings.cs (1)
1003return this.channelBinder.BeginTryReceive(timeout, receiveCallback, this);