7 implementations of Receive
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (1)
65
public Message
Receive
(TimeSpan timeout)
System.ServiceModel.Primitives (5)
System\ServiceModel\Channels\DuplexChannel.cs (1)
108
public Message
Receive
(TimeSpan timeout)
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
152
public Message
Receive
(TimeSpan timeout)
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
544
public Message
Receive
(TimeSpan timeout)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1347
public Message
Receive
(TimeSpan timeout)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
1581
public Message
Receive
(TimeSpan timeout) => ReceiveAsync(timeout).GetAwaiter().GetResult();
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
254
public Message
Receive
(TimeSpan timeout) => InnerChannel.Receive(timeout);
4 references to Receive
Client.ChannelLayer.IntegrationTests (3)
DuplexChannelShapeTests.4.0.0.cs (1)
54
replyMessage = channel.
Receive
(TimeSpan.FromSeconds(5));
DuplexChannelShapeTests.4.1.0.cs (2)
51
replyMessage = channel.
Receive
(TimeSpan.FromSeconds(5));
111
replyMessage = channel.
Receive
(TimeSpan.FromSeconds(5));
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
254
public Message Receive(TimeSpan timeout) => InnerChannel.
Receive
(timeout);