4 implementations of Request
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\RequestChannel.cs (1)
240public Message Request(Message message, TimeSpan timeout)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
1218public Message Request(Message message, TimeSpan timeout)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
760Message IRequestChannel.Request(Message message, TimeSpan timeout)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
811Message IRequestChannel.Request(Message message, TimeSpan timeout)
3 references to Request
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
813return ((IRequestChannel)_channel).Request(message, timeout);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\RequestChannelBinder.cs (2)
86ValidateNullReply(_channel.Request(message, timeout)); 106return _channel.Request(message, timeout);