4 implementations of WaitForMessageAsync
System.ServiceModel.Primitives (4)
System\ServiceModel\Channels\DuplexChannel.cs (1)
157public Task<bool> WaitForMessageAsync(TimeSpan timeout)
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
208public Task<bool> WaitForMessageAsync(TimeSpan timeout)
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
641public Task<bool> WaitForMessageAsync(TimeSpan timeout)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
1712public Task<bool> WaitForMessageAsync(TimeSpan timeout)
2 references to WaitForMessageAsync
System.ServiceModel.Primitives (2)
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
212return asyncInputChannel.WaitForMessageAsync(timeout);
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
645return asyncDuplexChannel.WaitForMessageAsync(timeout);