Implemented interface member:
method
SendAsync
System.ServiceModel.Channels.IAsyncOutputChannel.SendAsync(System.ServiceModel.Channels.Message, System.TimeSpan)
3 references to SendAsync
System.ServiceModel.Primitives (3)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (3)
1628public Task SendAsync(Message message) => SendAsync(message, DefaultSendTimeout); 1630public void Send(Message message, TimeSpan timeout) => SendAsync(message, timeout).WaitForCompletionNoSpin(); 1645public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) => SendAsync(message, timeout).ToApm(callback, state);