9 implementations of WaitForMessage
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingDuplexChannel.cs (1)
100public bool WaitForMessage(TimeSpan timeout)
System.ServiceModel.Http (1)
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (1)
203public bool WaitForMessage(TimeSpan timeout)
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (1)
205public bool WaitForMessage(TimeSpan timeout)
System.ServiceModel.Primitives (5)
System\ServiceModel\Channels\DuplexChannel.cs (1)
167public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
220public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
653public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1382public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
1710public bool WaitForMessage(TimeSpan timeout) => WaitForMessageAsync(timeout).GetAwaiter().GetResult();
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
261public bool WaitForMessage(TimeSpan timeout) => InnerChannel.WaitForMessage(timeout);
5 references to WaitForMessage
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingDuplexChannel.cs (1)
102return this.InnerChannel.WaitForMessage(timeout);
System.ServiceModel.Primitives (3)
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
655return InnerDuplexChannel.WaitForMessage(timeout);
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
617return _channel.WaitForMessage(timeout);
System\ServiceModel\Dispatcher\InputChannelBinder.cs (1)
134return _channel.WaitForMessage(timeout);
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
261public bool WaitForMessage(TimeSpan timeout) => InnerChannel.WaitForMessage(timeout);