5 implementations of SendAsync
System.ServiceModel.Primitives (5)
System\ServiceModel\Channels\DuplexChannel.cs (1)
26public Task SendAsync(Message message, TimeSpan timeout)
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
314public Task SendAsync(Message message, TimeSpan timeout)
System\ServiceModel\Channels\OutputChannel.cs (1)
100public Task SendAsync(Message message, TimeSpan timeout)
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
362public async Task SendAsync(Message message, TimeSpan timeout)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
1632public async Task SendAsync(Message message, TimeSpan timeout)
3 references to SendAsync
System.ServiceModel.Primitives (3)
System\ServiceModel\Channels\ClientReliableChannelBinder.cs (1)
277return ((IAsyncDuplexSessionChannel)channel).SendAsync(message, timeout);
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
318return asyncOutputChannel.SendAsync(message, timeout);
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
370await asyncOutputChannel.SendAsync(message, timeoutHelper.RemainingTime());