3 implementations of TryReceive
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingDuplexChannel.cs (1)
73public bool TryReceive(TimeSpan timeout, out Message message)
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (1)
163public bool TryReceive(TimeSpan timeout, out Message message)
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
258public bool TryReceive(TimeSpan timeout, out Message message) => InnerChannel.TryReceive(timeout, out message);
2 references to TryReceive
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingDuplexChannel.cs (1)
78result = this.InnerChannel.TryReceive(timeout, out message);
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
258public bool TryReceive(TimeSpan timeout, out Message message) => InnerChannel.TryReceive(timeout, out message);