9 implementations of Request
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelFactory.cs (1)
273public Message Request(Message message)
System.ServiceModel.Primitives (6)
System\ServiceModel\Channels\RequestChannel.cs (1)
220public Message Request(Message message)
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
427public Message Request(Message message)
System\ServiceModel\Channels\ServiceChannel.cs (1)
1228public Message Request(Message message)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
770Message IRequestChannel.Request(Message message)
System\ServiceModel\ClientBase.cs (1)
1183Message IRequestChannel.Request(Message message)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
1467Message IRequestChannel.Request(Message message) => ((IRequestChannel)this).Request(message, DefaultSendTimeout);
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
214public Message Request(Message message) => InnerChannel.Request(message);
UnitTests.Common (1)
MockRequestChannel.cs (1)
44public Message Request(Message message)
9 references to Request
Client.ChannelLayer.IntegrationTests (3)
RequestReplyChannelShapeTests.4.0.0.cs (2)
51replyMessage = channel.Request(requestMessage); 105replyMessage = channel.Request(requestMessage);
RequestReplyChannelShapeTests.4.1.0.cs (1)
50replyMessage = channel.Request(requestMessage);
Client.TypedClient.IntegrationTests (1)
TypedProxyTests.4.0.0.cs (1)
248replyMessage = channel.Request(requestMessage);
Contract.Message.IntegrationTests (1)
MessageTests.4.0.0.cs (1)
39using (Message replyMessage = channel.Request(requestMessage))
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelFactory.cs (1)
284reply = this.InnerChannel.Request(message);
System.ServiceModel.Federation (1)
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
299Message reply = channel.Request(Message.CreateMessage(MessageVersion.Soap12WSAddressing10, _requestSerializationContext.TrustActions.IssueRequest, reader));
System.ServiceModel.Primitives (1)
System\ServiceModel\ClientBase.cs (1)
1185return ((IRequestChannel)_channel).Request(message);
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
214public Message Request(Message message) => InnerChannel.Request(message);