9 implementations of BeginRequest
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelFactory.cs (1)
255public IAsyncResult BeginRequest(Message message, AsyncCallback callback, object state)
System.ServiceModel.Primitives (6)
System\ServiceModel\Channels\RequestChannel.cs (1)
203public IAsyncResult BeginRequest(Message message, AsyncCallback callback, object state)
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
412public IAsyncResult BeginRequest(Message message, AsyncCallback callback, object state)
System\ServiceModel\Channels\ServiceChannel.cs (1)
1239public IAsyncResult BeginRequest(Message message, AsyncCallback callback, object state)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
780IAsyncResult IRequestChannel.BeginRequest(Message message, AsyncCallback callback, object state)
System\ServiceModel\ClientBase.cs (1)
1193IAsyncResult IRequestChannel.BeginRequest(Message message, AsyncCallback callback, object state)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
1471IAsyncResult IRequestChannel.BeginRequest(Message message, AsyncCallback callback, object state) => ((IRequestChannel)this).BeginRequest(message, DefaultSendTimeout, callback, state);
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
211public IAsyncResult BeginRequest(Message message, AsyncCallback callback, object state) => InnerChannel.BeginRequest(message, callback, state);
UnitTests.Common (1)
MockRequestChannel.cs (1)
54public IAsyncResult BeginRequest(Message message, AsyncCallback callback, object state)
7 references to BeginRequest
Client.ChannelLayer.IntegrationTests (2)
RequestReplyChannelShapeTests.4.0.0.cs (2)
157replyMessage = Task.Factory.FromAsync((asyncCallback, o) => channel.BeginRequest(requestMessage, asyncCallback, o), 213replyMessage = Task.Factory.FromAsync((asyncCallback, o) => channel.BeginRequest(requestMessage, asyncCallback, o),
Client.TypedClient.IntegrationTests (1)
TypedProxyTests.4.0.0.cs (1)
376IAsyncResult ar = channel.BeginRequest(requestMessage, null, null);
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 (1)
System\ServiceModel\ClientBase.cs (1)
1195return ((IRequestChannel)_channel).BeginRequest(message, callback, state);
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
211public IAsyncResult BeginRequest(Message message, AsyncCallback callback, object state) => InnerChannel.BeginRequest(message, callback, state);