Sys.Net.XmlHttpExecutor started Property
.NET Framework 4
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();
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();
Note