Binding.ReceiveTimeout Property
Gets or sets the interval of time provided for a read operation to complete before the transport raises an exception.

Namespace: System.ServiceModel.Channels
Assembly: System.ServiceModel (in system.servicemodel.dll)

Syntax

Visual Basic (Declaration)
Public Property ReceiveTimeout As TimeSpan
Visual Basic (Usage)
Dim instance As Binding
Dim value As TimeSpan

value = instance.ReceiveTimeout

instance.ReceiveTimeout = value
C#
public TimeSpan ReceiveTimeout { get; set; }
C++
public:
virtual property TimeSpan ReceiveTimeout {
    TimeSpan get () sealed;
    void set (TimeSpan value);
}
J#
/** @property */
public final TimeSpan get_ReceiveTimeout ()

/** @property */
public void set_ReceiveTimeout (TimeSpan value)
JScript
public final function get ReceiveTimeout () : TimeSpan

public function set ReceiveTimeout (value : TimeSpan)
XAML
Not applicable.

Property Value

The Timespan that specifies how long the read operation has to complete before timing out. The default value is 10 minute.
Exceptions

Exception typeCondition

ArgumentOutOfRangeException

The value is less than zero or too large.

Remarks

If transaction flow is enabled on the binding or the channel, the operation may take longer to execute than the specified timeout. In these circumstances the operation fails due to the expired timeout and the transaction aborts appropriately.

Platforms

Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

Version Information

.NET Framework

Supported in: 3.0
See Also

Tags :


Page view tracker