3 implementations of TryReceive
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
146public bool TryReceive(TimeSpan timeout, out Message message)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (1)
191public bool TryReceive(TimeSpan timeout, out Message message)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1348public bool TryReceive(TimeSpan timeout, out Message message)
4 references to TryReceive
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
148bool retVal = InnerChannel.TryReceive(timeout, out message);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (2)
424if (_channel.TryReceive(timeout, out message)) 485if (!_channel.TryReceive(remaining, out reply))
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\InputChannelBinder.cs (1)
110if (_channel.TryReceive(timeout, out message))