Sys.Net.WebRequestExecutor webRequest Property
Gets the WebRequest object associated with the executor.
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 webRequest = MyExecutor.get_webRequest();
Return Value
The WebRequest object associated with the current executor instance.
Example
The following example shows how to use the webRequest property by using the default Sys.Net.XMLHttpExecutor class.
// Get the Web request instance.
var webReq = executor.get_webRequest();
// Display request Url.
alert(webReq.get_url());