HttpWebRequest.ReadWriteTimeout Property
Gets or sets a time-out in milliseconds when writing to or reading from a stream.
Assembly: System (in System.dll)
Property Value
Type: System.Int32The number of milliseconds before the writing or reading times out. The default value is 300,000 milliseconds (5 minutes).
| Exception | Condition |
|---|---|
| InvalidOperationException | The request has already been sent. |
| ArgumentOutOfRangeException | The value specified for a set operation is less than or equal to zero and is not equal to Infinite |
The ReadWriteTimeout property is used when writing to the stream returned by the GetRequestStream method or reading from the stream returned by the GetResponseStream method.
Specifically, the ReadWriteTimeout property controls the time-out for the Read method, which is used to read the stream returned by the GetResponseStream method, and for the Write method, which is used to write to the stream returned by the GetRequestStream method.
To specify the amount of time to wait for the request to complete, use the Timeout property.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.