Sys.Net.XmlHttpExecutor timedOut Property
Returns a value indicating whether the request timed out; otherwise, returns false.
Note
To get or set property values for client API properties, you must call property accessor methods that are named with the get_ and set_ prefixes. For example, to get or set a value for a property such as cancel, you call the get_cancel or set_cancel methods.
var timedOut = MyExecutor.get_timedOut();
Return Value
true if the request timed out; otherwise, false.
Remarks
The timedOut property returns true only if the request's time-out was set to a non-zero positive value and if the time-out elapsed without a response to the browser's XMLHTTP object.
Example
The following example shows how to use the timedOut property. This code is part of a complete example found in the Sys.Net.XmlHttpExecutor class overview.
See Also
Reference
Sys.Net.WebRequestManager Class