Sys.Net.XmlHttpExecutor started Property

Returns a value that indicates whether the executor has forwarded the request to the browser's XMLHTTP object

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 started = MyExecutor.get_started();

Return Value

true if the executor has forwarded the request to the browser's XMLHTTP object; otherwise, false.

Remarks

The started property returns true after the executor has called the send method of the XMLHTTP object. Until the request has been sent, this method returns false.

Example

The following example shows how to use the started property. This code is part of a complete example found in the Sys.Net.XmlHttpExecutor class overview.

var started = executor.get_started();

See Also

Reference

Sys.Net.WebRequestManager Class

Sys.Net.WebRequestExecutor Class

Sys.Net.XMLHttpExecutor Class