Jiggy 0.26 |
XmlHttpRequestdescriptionThis class is based on the W3C standard that can be found at http://www.w3.org/TR/XMLHttpRequest. It has only a few extensions and is not capable of returning an XML document (yet). Summary
responseData
An extension of the standard, lets you retrieve the response body as a binary Data object. sendData
An extension of the standard, lets you send a binary Data object. |
readonly int readystate
string responseText readonly
Unlike the standard, this function currently returns a string.
string responseXML readonly
An extension of the standard, lets you retrieve the response body as a binary Data object.
Data responseData readonly dynamic
int status readonly
string statusText readonly
An extension of the standard.
bool failed readonly
The parameters async, user and password are optional.
void open( string method, string url, jsval async, jsval user, jsval password )
void setRequestHeader( string header, string value )
The data argument is optional.
void send( string data )
void abort()
string getAllResponseHeaders()
string getResponseHeader( string header )
An extension of the standard, lets you send a binary Data object.
void sendData( Data data )
callback void onreadystatechange()