14 implementations of Send
Extensibility.MessageInterceptor.IntegrationTests (2)
InterceptingChannelFactory.cs (1)
161public void Send(Message message, TimeSpan timeout)
InterceptingDuplexChannel.cs (1)
293public void Send(Message message, TimeSpan timeout)
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)
1153void 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);
10 references to Send
Extensibility.MessageInterceptor.IntegrationTests (2)
InterceptingChannelFactory.cs (1)
167this.InnerChannel.Send(message, timeout);
InterceptingDuplexChannel.cs (1)
296this.InnerChannel.Send(message, timeout);
System.ServiceModel.Primitives (6)
System\ServiceModel\ClientBase.cs (1)
1155((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);