HttpServerConnectionTimeout Property |
Gets or sets the time-out value in milliseconds for the System.Net.HttpWebRequest.GetResponse()
and System.Net.HttpWebRequest.GetRequestStream() methods.
Namespace:
Aras.IOM
Assembly:
IOM (in IOM.dll) Version: 14.0.9.36244
Syntaxpublic int Timeout { get; set; }
Public Property Timeout As Integer
Get
Set
/** @property */
public int get_Timeout()
/** @property */
public void set_Timeout(int value)
function get Timeout () : int
function set Timeout (value : int)
Property Value
Type:
Int32
The number of milliseconds to wait before the request times out. The default
is 100,000 milliseconds (100 seconds).
ExceptionsException | Condition |
---|
ArgumentOutOfRangeException |
The value specified is less than zero and is not System.Threading.Timeout.Infinite.
|
See Also