14 implementations of BeginSend
Extensibility.MessageInterceptor.IntegrationTests (2)
System.ServiceModel.NetFramingBase (1)
System.ServiceModel.Primitives (9)
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);
12 references to BeginSend
Extensibility.MessageInterceptor.IntegrationTests (2)
System.ServiceModel.Primitives (9)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (4)
342return _channel.BeginSend(message, timeout, callback, state);
370IAsyncResult result = _channel.BeginSend(message, timeout, Fx.ThunkCallback(new AsyncCallback(SendCallback)), duplexRequest);
683IAsyncResult result = context._channel.BeginSend(message, timeout, s_onSend, this);
1518return _innerChannel.BeginSend(message, timeout, callback, state);
System.ServiceModel.Primitives.Tests (1)