9 implementations of WaitForRequest
System.ServiceModel (8)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
3437public bool WaitForRequest(TimeSpan timeout)
System\ServiceModel\Channels\ContextReplyChannel.cs (1)
123public bool WaitForRequest(TimeSpan timeout)
System\ServiceModel\Channels\ContextReplySessionChannel.cs (1)
129public bool WaitForRequest(TimeSpan timeout)
System\ServiceModel\Channels\ReplyAdapterChannelListener.cs (1)
177public bool WaitForRequest(TimeSpan timeout)
System\ServiceModel\Channels\ReplyChannel.cs (1)
223public bool WaitForRequest(TimeSpan timeout)
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
1365public bool WaitForRequest(TimeSpan timeout)
System\ServiceModel\Channels\TransactionChannelListener.cs (1)
472public bool WaitForRequest(TimeSpan timeout)
System\ServiceModel\Security\SecuritySessionServerSettings.cs (1)
3513public bool WaitForRequest(TimeSpan timeout)
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\UdpReplyChannel.cs (1)
123public bool WaitForRequest(TimeSpan timeout)
7 references to WaitForRequest
System.ServiceModel (7)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
3441return this.InnerChannel.WaitForRequest(timeout);
System\ServiceModel\Channels\ContextReplyChannel.cs (1)
125return this.InnerChannel.WaitForRequest(timeout);
System\ServiceModel\Channels\ContextReplySessionChannel.cs (1)
131return this.InnerChannel.WaitForRequest(timeout);
System\ServiceModel\Channels\OneWayChannelListener.cs (1)
206return InnerChannel.WaitForRequest(timeout);
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
1367return this.InnerChannel.WaitForRequest(timeout);
System\ServiceModel\Channels\ServerReliableChannelBinder.cs (1)
958return channel.WaitForRequest(timeout);
System\ServiceModel\Channels\TransactionChannelListener.cs (1)
474return InnerChannel.WaitForRequest(timeout);