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