4 implementations of EndRequest
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelFactory.cs (1)
266public Message EndRequest(IAsyncResult result)
System.ServiceModel.Primitives (1)
netstandard.cs (1)
543System.ServiceModel.Channels.Message System.ServiceModel.Channels.IRequestChannel.EndRequest(System.IAsyncResult result) { return default; }
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
213public Message EndRequest(IAsyncResult result) => InnerChannel.EndRequest(result);
UnitTests.Common (1)
MockRequestChannel.cs (1)
68public Message EndRequest(IAsyncResult result)
7 references to EndRequest
Client.ChannelLayer.IntegrationTests (2)
RequestReplyChannelShapeTests.4.0.0.cs (2)
158channel.EndRequest, 214channel.EndRequest,
Client.TypedClient.IntegrationTests (1)
TypedProxyTests.4.0.0.cs (1)
377replyMessage = channel.EndRequest(ar);
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelFactory.cs (1)
318replyMessage = channel.InnerChannel.EndRequest(result);
System.ServiceModel.Federation (2)
System\ServiceModel\Federation\WSTrustChannel.cs (1)
361Message response = await Task.Factory.FromAsync(RequestChannel.BeginRequest, RequestChannel.EndRequest, requestMessage, null, TaskCreationOptions.None).ConfigureAwait(false);
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
247Message reply = await Task.Factory.FromAsync(channel.BeginRequest, channel.EndRequest, requestMessage, null, TaskCreationOptions.None);
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
213public Message EndRequest(IAsyncResult result) => InnerChannel.EndRequest(result);