6 implementations of Send
dotnet-svcutil-lib (6)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
250public void Send(Message message, TimeSpan timeout)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\OutputChannel.cs (1)
74public void Send(Message message, TimeSpan timeout)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
1191public void Send(Message message, TimeSpan timeout)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
750void IOutputChannel.Send(Message message, TimeSpan timeout)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
776void IOutputChannel.Send(Message message, TimeSpan timeout)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1487public void Send(Message message, TimeSpan timeout)
7 references to Send
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
252_innerOutputChannel.Send(message, timeout);
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
778((IOutputChannel)_channel).Send(message, timeout);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (4)
360_channel.Send(message, timeout); 472_channel.Send(message, timeoutHelper.RemainingTime()); 521_channel.Send(message, timeoutHelper.RemainingTime()); 652_channel.Send(message, timeout);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OutputChannelBinder.cs (1)
92_channel.Send(message, timeout);