9 implementations of BeginRequest
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelFactory.cs (1)
260public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Primitives (6)
System\ServiceModel\Channels\RequestChannel.cs (1)
208public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
417public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ServiceChannel.cs (1)
1244public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
785IAsyncResult IRequestChannel.BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\ClientBase.cs (1)
1198IAsyncResult IRequestChannel.BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
1473IAsyncResult IRequestChannel.BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state) => RequestAsync(message, timeout).ToApm(callback, state);
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
212public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state) => InnerChannel.BeginRequest(message, timeout, callback, state);
UnitTests.Common (1)
MockRequestChannel.cs (1)
49public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state)
8 references to BeginRequest
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelFactory.cs (1)
304IAsyncResult requestResult = channel.InnerChannel.BeginRequest(message, timeout, requestCallback, this);
System.ServiceModel.Primitives (6)
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)
1200return ((IRequestChannel)_channel).BeginRequest(message, timeout, callback, state);
System\ServiceModel\Dispatcher\RequestChannelBinder.cs (2)
77return _channel.BeginRequest(message, timeout, callback, state); 92return _channel.BeginRequest(message, timeout, callback, 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)
212public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state) => InnerChannel.BeginRequest(message, timeout, callback, state);