Sys.Net.WebRequestExecutor started Property

Returns a value indicating whether the executor has started processing the request.

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 started processing the request; otherwise, false.

Remarks

The executor returns true if substantial processing of the request has started. For executors that make network calls, substantial processing means that a network call has been started.

Example

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

var started = executor.get_started();

See Also

Reference

Sys.Net.WebRequestManager Class

Sys.Net.WebRequest Class

Sys.Net.XMLHttpExecutor Class