4 implementations of Request
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelFactory.cs (1)
273public Message Request(Message message)
System.ServiceModel.Primitives (1)
netstandard.cs (1)
544System.ServiceModel.Channels.Message System.ServiceModel.Channels.IRequestChannel.Request(System.ServiceModel.Channels.Message message) { return default; }
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)
8 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)
285Message reply = channel.Request(Message.CreateMessage(MessageVersion.Soap12WSAddressing10, _requestSerializationContext.TrustActions.IssueRequest, reader));
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
214public Message Request(Message message) => InnerChannel.Request(message);