9 implementations of EndRequest
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelFactory.cs (1)
266public Message EndRequest(IAsyncResult result)
System.ServiceModel.Primitives (6)
System\ServiceModel\Channels\RequestChannel.cs (1)
215public Message EndRequest(IAsyncResult result)
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
422public Message EndRequest(IAsyncResult result)
System\ServiceModel\Channels\ServiceChannel.cs (1)
1250public Message EndRequest(IAsyncResult result)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
790Message IRequestChannel.EndRequest(IAsyncResult result)
System\ServiceModel\ClientBase.cs (1)
1203Message IRequestChannel.EndRequest(IAsyncResult result)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
1475Message IRequestChannel.EndRequest(IAsyncResult result) => result.ToApmEnd<Message>();
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)
12 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)
261Message reply = await Task.Factory.FromAsync(channel.BeginRequest, channel.EndRequest, requestMessage, null, TaskCreationOptions.None);
System.ServiceModel.Primitives (5)
System\ServiceModel\Channels\ClientReliableChannelBinder.cs (1)
458return Task.Factory.FromAsync(channel.BeginRequest, channel.EndRequest, message, timeout, null);
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
471Message reply = await Task.Factory.FromAsync(InnerChannel.BeginRequest, InnerChannel.EndRequest, message, timeoutHelper.RemainingTime(), null);
System\ServiceModel\ClientBase.cs (1)
1205return ((IRequestChannel)_channel).EndRequest(result);
System\ServiceModel\Dispatcher\RequestChannelBinder.cs (2)
82ValidateNullReply(_channel.EndRequest(result)); 97return _channel.EndRequest(result);
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
213public Message EndRequest(IAsyncResult result) => InnerChannel.EndRequest(result);