9 implementations of EndWaitForMessage
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingDuplexChannel.cs (1)
110public bool EndWaitForMessage(IAsyncResult result)
System.ServiceModel.Http (1)
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (1)
213public bool EndWaitForMessage(IAsyncResult result)
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (1)
215public bool EndWaitForMessage(IAsyncResult result)
System.ServiceModel.Primitives (5)
System\ServiceModel\Channels\DuplexChannel.cs (1)
177public bool EndWaitForMessage(IAsyncResult result)
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
230public bool EndWaitForMessage(IAsyncResult result)
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
663public bool EndWaitForMessage(IAsyncResult result)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1392public bool EndWaitForMessage(IAsyncResult result)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
1719public bool EndWaitForMessage(IAsyncResult result) => result.ToApmEnd<bool>();
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
263public bool EndWaitForMessage(IAsyncResult result) => InnerChannel.EndWaitForMessage(result);
7 references to EndWaitForMessage
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingDuplexChannel.cs (1)
112return this.InnerChannel.EndWaitForMessage(result);
System.ServiceModel.Primitives (5)
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
216return Task.Factory.FromAsync(InnerChannel.BeginWaitForMessage, InnerChannel.EndWaitForMessage, timeout, null);
System\ServiceModel\Channels\SecurityChannelFactory.cs (2)
649return Task.Factory.FromAsync(InnerDuplexChannel.BeginWaitForMessage, InnerDuplexChannel.EndWaitForMessage, timeout, null); 665return InnerDuplexChannel.EndWaitForMessage(result);
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
627return _channel.EndWaitForMessage(result);
System\ServiceModel\Dispatcher\InputChannelBinder.cs (1)
144return _channel.EndWaitForMessage(result);
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
263public bool EndWaitForMessage(IAsyncResult result) => InnerChannel.EndWaitForMessage(result);