18 implementations of WaitForMessage
System.ServiceModel (16)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
3299public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Channels\ContextDuplexSessionChannel.cs (1)
124public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Channels\DuplexChannel.cs (1)
168public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Channels\InputChannel.cs (1)
124public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
361public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
154public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Channels\MsmqInputChannelBase.cs (1)
273public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Channels\OneWayChannelListener.cs (2)
204public bool WaitForMessage(TimeSpan timeout) 620public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
827public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
992public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Channels\TransactionChannelListener.cs (1)
338public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (1)
240public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1427public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
3416public bool WaitForMessage(TimeSpan timeout)
System\ServiceModel\Security\SecuritySessionServerSettings.cs (1)
4015public bool WaitForMessage(TimeSpan timeout)
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\UdpDuplexChannel.cs (1)
158public bool WaitForMessage(TimeSpan timeout)
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryClientDuplexChannel.cs (1)
97public bool WaitForMessage(TimeSpan timeout)
14 references to WaitForMessage
System.ServiceModel (13)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
3303return this.InnerChannel.WaitForMessage(timeout);
System\ServiceModel\Channels\ContextDuplexSessionChannel.cs (1)
126return this.InnerChannel.WaitForMessage(timeout);
System\ServiceModel\Channels\ContextInputChannelBase.cs (1)
102return this.InnerChannel.WaitForMessage(timeout);
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
363return innerInputChannel.WaitForMessage(timeout);
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
156return InnerChannel.WaitForMessage(timeout);
System\ServiceModel\Channels\OneWayChannelListener.cs (1)
622return this.InnerChannel.WaitForMessage(timeout);
System\ServiceModel\Channels\ReplyAdapterChannelListener.cs (1)
179return this.InnerChannel.WaitForMessage(timeout);
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
829return this.InnerDuplexChannel.WaitForMessage(timeout);
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
994return this.InnerChannel.WaitForMessage(timeout);
System\ServiceModel\Channels\ServerReliableChannelBinder.cs (1)
763return channel.WaitForMessage(timeout);
System\ServiceModel\Channels\TransactionChannelListener.cs (1)
340return InnerChannel.WaitForMessage(timeout);
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
659return this.channel.WaitForMessage(timeout);
System\ServiceModel\Dispatcher\InputChannelBinder.cs (1)
140return this.channel.WaitForMessage(timeout);
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryClientDuplexChannel.cs (1)
99return this.InnerChannel.WaitForMessage(timeout);