3 implementations of Request
System.ServiceModel.Primitives (1)
netstandard.cs (1)
545
System.ServiceModel.Channels.Message System.ServiceModel.Channels.IRequestChannel.
Request
(System.ServiceModel.Channels.Message message, System.TimeSpan timeout) { return default; }
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
215
public Message
Request
(Message message, TimeSpan timeout) => InnerChannel.Request(message, timeout);
UnitTests.Common (1)
MockRequestChannel.cs (1)
32
public Message
Request
(Message message, TimeSpan timeout)
2 references to Request
Client.TypedClient.IntegrationTests (1)
TypedProxyTests.4.0.0.cs (1)
312
replyMessage = channel.
Request
(requestMessage, TimeSpan.FromSeconds(60));
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
215
public Message Request(Message message, TimeSpan timeout) => InnerChannel.
Request
(message, timeout);