Sys.Net.WebRequestExecutor timedOut Property

Gets a value indicating whether the request timed out.

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

Executors use the time-out information associated with the request to raise the completed event on the associated WebRequest object.

Example

The following example shows how to use the timedOut property by using the default Sys.Net.XMLHttpExecutor class.

if (executor.get_timedOut())

See Also

Reference

Sys.Net.WebRequestManager Class

Sys.Net.WebRequest Class

Sys.Net.XMLHttpExecutor Class