19 implementations of TryReceive
System.ServiceModel (17)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
3273public bool TryReceive(TimeSpan timeout, out Message message)
System\ServiceModel\Channels\ContextDuplexSessionChannel.cs (1)
114public bool TryReceive(TimeSpan timeout, out Message message)
System\ServiceModel\Channels\DuplexChannel.cs (1)
143public bool TryReceive(TimeSpan timeout, out Message message)
System\ServiceModel\Channels\InputChannel.cs (1)
95public virtual bool TryReceive(TimeSpan timeout, out Message message)
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
232public bool TryReceive(TimeSpan timeout, out Message message)
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
147public bool TryReceive(TimeSpan timeout, out Message message)
System\ServiceModel\Channels\MsmqInputChannelBase.cs (1)
148public bool TryReceive(TimeSpan timeout, out Message message)
System\ServiceModel\Channels\MsmqInputSessionChannel.cs (1)
110public override bool TryReceive(TimeSpan timeout, out Message message)
System\ServiceModel\Channels\OneWayChannelListener.cs (2)
178public bool TryReceive(TimeSpan timeout, out Message message) 613public bool TryReceive(TimeSpan timeout, out Message message)
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
810public bool TryReceive(TimeSpan timeout, out Message message)
System\ServiceModel\Channels\SecurityChannelListener.cs (2)
952public virtual bool TryReceive(TimeSpan timeout, out Message message) 1129public override bool TryReceive(TimeSpan timeout, out Message message)
System\ServiceModel\Channels\TransactionChannelListener.cs (1)
323public virtual bool TryReceive(TimeSpan timeout, out Message message)
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (1)
219public bool TryReceive(TimeSpan timeout, out Message message)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1412public bool TryReceive(TimeSpan timeout, out Message message)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
3238public bool TryReceive(TimeSpan timeout, out Message message)
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\UdpDuplexChannel.cs (1)
131public bool TryReceive(TimeSpan timeout, out Message message)
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryClientDuplexChannel.cs (1)
92public bool TryReceive(TimeSpan timeout, out Message message)
16 references to TryReceive
System.ServiceModel (15)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
3278return this.InnerChannel.TryReceive(timeout, out message);
System\ServiceModel\Channels\ClientReliableChannelBinder.cs (1)
399bool success = channel.TryReceive(timeout, out message);
System\ServiceModel\Channels\ContextDuplexSessionChannel.cs (1)
116bool result = this.InnerChannel.TryReceive(timeout, out message);
System\ServiceModel\Channels\ContextInputChannelBase.cs (1)
89if (this.InnerChannel.TryReceive(timeout, out message))
System\ServiceModel\Channels\InputChannel.cs (1)
155if (channel.TryReceive(timeout, out message))
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
234return this.innerInputChannel.TryReceive(timeout, out message);
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
149bool retVal = InnerChannel.TryReceive(timeout, out message);
System\ServiceModel\Channels\OneWayChannelListener.cs (1)
615bool success = this.InnerChannel.TryReceive(timeout, out message);
System\ServiceModel\Channels\ReliableChannelBinder.cs (1)
3763bool success = channel.TryReceive(iterationTimeout, out message);
System\ServiceModel\Channels\ReplyAdapterChannelListener.cs (1)
151if (!this.InnerChannel.TryReceive(timeout, out message))
System\ServiceModel\Channels\ServerReliableChannelBinder.cs (1)
752bool success = channel.TryReceive(timeout, out message);
System\ServiceModel\Channels\TransactionChannelListener.cs (1)
325if (!InnerChannel.TryReceive(timeout, out message))
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (2)
434if (this.channel.TryReceive(timeout, out message)) 495if (!this.channel.TryReceive(remaining, out reply))
System\ServiceModel\Dispatcher\InputChannelBinder.cs (1)
111if (this.channel.TryReceive(timeout, out message))
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryClientDuplexChannel.cs (1)
94return this.InnerChannel.TryReceive(timeout, out message);