SendTimeout Property

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Gets or sets a value that specifies the amount of time after which a synchronous Send call will time out.

Namespace:  System.Net.Sockets
Assembly:  System (in System.dll)

Syntax

'Declaration
Public Property SendTimeout As Integer
public int SendTimeout { get; set; }
public:
property int SendTimeout {
    int get ();
    void set (int value);
}
member SendTimeout : int with get, set
function get SendTimeout () : int
function set SendTimeout (value : int)

Property Value

Type: System. . :: . .Int32
The time-out value, in milliseconds. If you set the property with a value between 1 and 499, the value will be changed to 500. The default value is 0, which indicates an infinite time-out period. Specifying -1 also indicates an infinite time-out period.

Remarks

This option applies to synchronous Send calls only. If the time-out period is exceeded, the Send method will throw a SocketException.

.NET Framework Security

See Also

Reference

Socket Class

System.Net.Sockets Namespace