18 implementations of Receive
System.ServiceModel (16)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
3242public Message Receive(TimeSpan timeout)
System\ServiceModel\Channels\ContextDuplexSessionChannel.cs (1)
94public Message Receive(TimeSpan timeout)
System\ServiceModel\Channels\DuplexChannel.cs (1)
111public Message Receive(TimeSpan timeout)
System\ServiceModel\Channels\InputChannel.cs (1)
61public virtual Message Receive(TimeSpan timeout)
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
151public Message Receive(TimeSpan timeout)
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
111public Message Receive(TimeSpan timeout)
System\ServiceModel\Channels\MsmqInputChannelBase.cs (1)
124public Message Receive(TimeSpan timeout)
System\ServiceModel\Channels\MsmqInputSessionChannel.cs (1)
95public override Message Receive(TimeSpan timeout)
System\ServiceModel\Channels\OneWayChannelListener.cs (2)
156public Message Receive(TimeSpan timeout) 607public Message Receive(TimeSpan timeout)
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
734public Message Receive(TimeSpan timeout)
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
911public Message Receive(TimeSpan timeout)
System\ServiceModel\Channels\TransactionChannelListener.cs (1)
283public Message Receive(TimeSpan timeout)
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (1)
109public Message Receive(TimeSpan timeout)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1392public Message Receive(TimeSpan timeout)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
3195public Message Receive(TimeSpan timeout)
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\UdpDuplexChannel.cs (1)
99public Message Receive(TimeSpan timeout)
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryClientDuplexChannel.cs (1)
82public Message Receive(TimeSpan timeout)
6 references to Receive
System.ServiceModel (5)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
3247return this.InnerChannel.Receive(timeout);
System\ServiceModel\Channels\ContextDuplexSessionChannel.cs (1)
96Message message = this.InnerChannel.Receive(timeout);
System\ServiceModel\Channels\ContextInputChannelBase.cs (1)
75Message message = this.InnerChannel.Receive(timeout);
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
113Message message = InnerChannel.Receive(timeout);
System\ServiceModel\Channels\OneWayChannelListener.cs (1)
609Message result = this.InnerChannel.Receive(timeout);
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryClientDuplexChannel.cs (1)
84return this.InnerChannel.Receive(timeout);