12 implementations of Send
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\OutputChannel.cs (1)
75public void Send(Message message, TimeSpan timeout)
System.ServiceModel.Primitives (9)
System\ServiceModel\Channels\DuplexChannel.cs (1)
79public void Send(Message message, TimeSpan timeout)
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
331public void Send(Message message, TimeSpan timeout)
System\ServiceModel\Channels\OutputChannel.cs (1)
75public void Send(Message message, TimeSpan timeout)
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
383public void Send(Message message, TimeSpan timeout)
System\ServiceModel\Channels\ServiceChannel.cs (1)
1206public void Send(Message message, TimeSpan timeout)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
765void IOutputChannel.Send(Message message, TimeSpan timeout)
System\ServiceModel\ClientBase.cs (1)
1173void IOutputChannel.Send(Message message, TimeSpan timeout)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1506public void Send(Message message, TimeSpan timeout)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
1630public void Send(Message message, TimeSpan timeout) => SendAsync(message, timeout).WaitForCompletionNoSpin();
System.ServiceModel.Primitives.Tests (2)
ServiceModel\ThrowingOnCloseBindingElement.cs (2)
198public void Send(Message message, TimeSpan timeout) => InnerChannel.Send(message, timeout); 276public void Send(Message message, TimeSpan timeout) => InnerChannel.Send(message, timeout);
8 references to Send
System.ServiceModel.Primitives (6)
System\ServiceModel\ClientBase.cs (1)
1175((IOutputChannel)_channel).Send(message, timeout);
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (4)
352_channel.Send(message, timeout); 470_channel.Send(message, timeoutHelper.RemainingTime()); 521_channel.Send(message, timeoutHelper.RemainingTime()); 654_channel.Send(message, timeout);
System\ServiceModel\Dispatcher\OutputChannelBinder.cs (1)
91_channel.Send(message, timeout);
System.ServiceModel.Primitives.Tests (2)
ServiceModel\ThrowingOnCloseBindingElement.cs (2)
198public void Send(Message message, TimeSpan timeout) => InnerChannel.Send(message, timeout); 276public void Send(Message message, TimeSpan timeout) => InnerChannel.Send(message, timeout);