ReceiveTimeout 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 Receive call will time out.
Namespace: System.Net.Sockets
Assembly: System (in System.dll)
Syntax
'Declaration
Public Property ReceiveTimeout As Integer
public int ReceiveTimeout { get; set; }
public:
property int ReceiveTimeout {
int get ();
void set (int value);
}
member ReceiveTimeout : int with get, set
function get ReceiveTimeout () : int
function set ReceiveTimeout (value : int)
Property Value
Type: System. . :: . .Int32
The time-out value, in milliseconds. 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 Receive calls only. If the time-out period is exceeded, the Receive method will throw a SocketException.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.