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