7 implementations of WaitForMessage
System.ServiceModel (7)
System\ServiceModel\Dispatcher\BufferedReceiveBinder.cs (1)
159public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
657public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Dispatcher\InputChannelBinder.cs (1)
138public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Dispatcher\MultipleReceiveBinder.cs (1)
222public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Dispatcher\OutputChannelBinder.cs (1)
116public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Dispatcher\ReplyChannelBinder.cs (1)
118public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Dispatcher\RequestChannelBinder.cs (1)
120public bool WaitForMessage(TimeSpan timeout)
3 references to WaitForMessage
System.ServiceModel (3)
System\ServiceModel\Dispatcher\BufferedReceiveBinder.cs (1)
161return this.channelBinder.WaitForMessage(timeout);
System\ServiceModel\Dispatcher\ErrorhandlingReceiver.cs (1)
186this.binder.WaitForMessage(TimeSpan.MaxValue);
System\ServiceModel\Dispatcher\MultipleReceiveBinder.cs (1)
224return this.channelBinder.WaitForMessage(timeout);