6 implementations of BeginSend
Extensibility.MessageInterceptor.IntegrationTests (2)
InterceptingChannelFactory.cs (1)
145public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
InterceptingDuplexChannel.cs (1)
304public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\OutputChannel.cs (1)
26public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Primitives (1)
netstandard.cs (1)
537System.IAsyncResult System.ServiceModel.Channels.IOutputChannel.BeginSend(System.ServiceModel.Channels.Message message, System.TimeSpan timeout, System.AsyncCallback callback, object state) { return default; }
System.ServiceModel.Primitives.Tests (2)
ServiceModel\ThrowingOnCloseBindingElement.cs (2)
195public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) => InnerChannel.BeginSend(message, timeout, callback, state); 278public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) => InnerChannel.BeginSend(message, callback, state);
3 references to BeginSend
Extensibility.MessageInterceptor.IntegrationTests (2)
InterceptingChannelFactory.cs (1)
183IAsyncResult sendResult = channel.BeginSend(message, timeout, sendCallback, this);
InterceptingDuplexChannel.cs (1)
307return this.InnerChannel.BeginSend(message, timeout, callback, state);
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
195public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) => InnerChannel.BeginSend(message, timeout, callback, state);