4 implementations of BeginRequest
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelFactory.cs (1)
260public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Primitives (1)
netstandard.cs (1)
542System.IAsyncResult System.ServiceModel.Channels.IRequestChannel.BeginRequest(System.ServiceModel.Channels.Message message, System.TimeSpan timeout, System.AsyncCallback callback, object state) { return default; }
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)
2 references to BeginRequest
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelFactory.cs (1)
304IAsyncResult requestResult = channel.InnerChannel.BeginRequest(message, timeout, requestCallback, this);
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);