6 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 (1)
netstandard.cs (1)
540void System.ServiceModel.Channels.IOutputChannel.Send(System.ServiceModel.Channels.Message message, System.TimeSpan 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);
4 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.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);