Class Index | File Index

Classes


Class XMLHttpRequest

A standard implementation of the XMLHttpRequest interface as defined by w3c. This class does not strive to be binary compatible with any specific browser implementation, so using a wrapper library might not work well.

Notable things about the XHR implementation inside Content Studio include:

Class Summary
Constructor Attributes Constructor Name and Description
 
Instantiates a new XMLHttpRequest instance.
Method Summary
Method Attributes Method Name and Description
 
An event listener which is invoked every time the readyState changes.
 
open(Method, URL, Asynchronous, UserName, Password)
Prepares the XHR to connect to a specific server.
 
setRequestHeader(name, value)
Sets a request header.
Class Detail
XMLHttpRequest()
Instantiates a new XMLHttpRequest instance.
Method Detail
onreadystatechange()
An event listener which is invoked every time the readyState changes.

open(Method, URL, Asynchronous, UserName, Password)
Prepares the XHR to connect to a specific server.
Parameters:
Method
URL
Asynchronous
UserName
Password

setRequestHeader(name, value)
Sets a request header.
Parameters:
name
value

Documentation generated by JsDoc Toolkit 2.3.2 on Wed Jul 07 2021 16:12:59 GMT+0200 (CEST)