19 implementations of BeginTryReceive
System.ServiceModel (17)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
3281
public IAsyncResult
BeginTryReceive
(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ContextDuplexSessionChannel.cs (1)
59
public IAsyncResult
BeginTryReceive
(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\DuplexChannel.cs (1)
153
public IAsyncResult
BeginTryReceive
(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\InputChannel.cs (1)
107
public virtual IAsyncResult
BeginTryReceive
(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
171
public IAsyncResult
BeginTryReceive
(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
135
public IAsyncResult
BeginTryReceive
(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\MsmqInputChannelBase.cs (1)
203
public IAsyncResult
BeginTryReceive
(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\MsmqInputSessionChannel.cs (1)
136
public override IAsyncResult
BeginTryReceive
(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\OneWayChannelListener.cs (2)
194
public IAsyncResult
BeginTryReceive
(TimeSpan timeout, AsyncCallback callback, object state)
574
public IAsyncResult
BeginTryReceive
(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
754
public virtual IAsyncResult
BeginTryReceive
(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\SecurityChannelListener.cs (2)
931
public virtual IAsyncResult
BeginTryReceive
(TimeSpan timeout, AsyncCallback callback, object state)
1176
public override IAsyncResult
BeginTryReceive
(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\TransactionChannelListener.cs (1)
303
public IAsyncResult
BeginTryReceive
(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (1)
209
public IAsyncResult
BeginTryReceive
(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1417
public IAsyncResult
BeginTryReceive
(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
3215
public IAsyncResult
BeginTryReceive
(TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\UdpDuplexChannel.cs (1)
142
public IAsyncResult
BeginTryReceive
(TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryClientDuplexChannel.cs (1)
57
public IAsyncResult
BeginTryReceive
(TimeSpan timeout, AsyncCallback callback, object state)
21 references to BeginTryReceive
System.ServiceModel (20)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
3286
return this.InnerChannel.
BeginTryReceive
(timeout, callback, state);
System\ServiceModel\Channels\ClientReliableChannelBinder.cs (1)
364
return channel.
BeginTryReceive
(timeout, callback, state);
System\ServiceModel\Channels\ContextDuplexSessionChannel.cs (1)
61
return this.InnerChannel.
BeginTryReceive
(timeout, callback, state);
System\ServiceModel\Channels\ContextInputChannelBase.cs (1)
40
return this.InnerChannel.
BeginTryReceive
(timeout, callback, state);
System\ServiceModel\Channels\InputChannel.cs (1)
187
IAsyncResult result = channel.
BeginTryReceive
(timeout, onReceive, this);
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
173
return this.innerInputChannel.
BeginTryReceive
(timeout, callback, state);
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
137
return InnerChannel.
BeginTryReceive
(timeout, callback, state);
System\ServiceModel\Channels\OneWayChannelListener.cs (3)
576
return this.InnerChannel.
BeginTryReceive
(timeout, callback, state);
1271
result = this.channel.
BeginTryReceive
(this.idleTimeout, onReceive, this);
1412
result = this.channel.
BeginTryReceive
(this.idleTimeout, onReceive, this);
System\ServiceModel\Channels\ReliableChannelBinder.cs (1)
4203
return this.Channel.
BeginTryReceive
(timeout, callback, state);
System\ServiceModel\Channels\ReliableChannelListener.cs (2)
1296
return channel.
BeginTryReceive
(TimeSpan.MaxValue, callback, state);
1588
return channel.
BeginTryReceive
(TimeSpan.MaxValue, callback, channel);
System\ServiceModel\Channels\ReplyAdapterChannelListener.cs (1)
162
return this.InnerChannel.
BeginTryReceive
(timeout, callback, state);
System\ServiceModel\Channels\SecurityChannelListener.cs (2)
1913
return this.innerChannel.
BeginTryReceive
(timeout, callback, state);
2007
return this.innerChannel.
BeginTryReceive
(timeout, callback, state);
System\ServiceModel\Channels\ServerReliableChannelBinder.cs (1)
707
return channel.
BeginTryReceive
(timeout, callback, state);
System\ServiceModel\Channels\TransactionChannelListener.cs (1)
305
return InnerChannel.
BeginTryReceive
(timeout, callback, state);
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
319
return this.channel.
BeginTryReceive
(timeout, callback, state);
System\ServiceModel\Dispatcher\InputChannelBinder.cs (1)
70
return this.channel.
BeginTryReceive
(timeout, callback, state);
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryClientDuplexChannel.cs (1)
59
return this.InnerChannel.
BeginTryReceive
(timeout, callback, state);