8 references to DefaultSendTimeout
dotnet-svcutil-lib (8)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChannelBase.cs (1)
41get { return this.DefaultSendTimeout; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannelFactory.cs (2)
247this.Send(message, this.DefaultSendTimeout); 257return this.BeginSend(message, this.DefaultSendTimeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\OutputChannel.cs (2)
26return this.BeginSend(message, this.DefaultSendTimeout, callback, state); 71this.Send(message, this.DefaultSendTimeout);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\RequestChannel.cs (3)
220return this.BeginRequest(message, this.DefaultSendTimeout, callback, state); 237return this.Request(message, this.DefaultSendTimeout); 247return RequestAsync(message, this.DefaultSendTimeout);