This topic has not yet been rated - Rate this topic

Sys.Net.XmlHttpExecutor started Property

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

NoteNote

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();

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

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.

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();


Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.