LNXSDK/Kha/Tools/linux_x64/std/js/html/XMLHttpRequest.hx

155 lines
5.9 KiB
Haxe
Raw Permalink Normal View History

2025-01-22 16:18:30 +01:00
/*
* Copyright (C)2005-2019 Haxe Foundation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
// This file is generated from mozilla\XMLHttpRequest.webidl. Do not edit!
package js.html;
/**
Use `XMLHttpRequest` (XHR) objects to interact with servers. You can retrieve data from a URL without having to do a full page refresh. This enables a Web page to update just part of a page without disrupting what the user is doing.
Documentation [XMLHttpRequest](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest) by [Mozilla Contributors](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest$history), licensed under [CC-BY-SA 2.5](https://creativecommons.org/licenses/by-sa/2.5/).
@see <https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest>
**/
@:native("XMLHttpRequest")
extern class XMLHttpRequest extends XMLHttpRequestEventTarget {
static inline var UNSENT : Int = 0;
static inline var OPENED : Int = 1;
static inline var HEADERS_RECEIVED : Int = 2;
static inline var LOADING : Int = 3;
static inline var DONE : Int = 4;
/**
An `EventHandler` that is called whenever the `readyState` attribute changes.
**/
var onreadystatechange : haxe.Constraints.Function;
/**
Returns an `unsigned short`, the state of the request.
**/
var readyState(default,null) : Int;
/**
Is an `unsigned long` representing the number of milliseconds a request can take before automatically being terminated.
**/
var timeout : Int;
/**
Is a `Boolean` that indicates whether or not cross-site `Access-Control` requests should be made using credentials such as cookies or authorization headers.
**/
var withCredentials : Bool;
/**
Is an `XMLHttpRequestUpload`, representing the upload process.
**/
var upload(default,null) : XMLHttpRequestUpload;
/**
Returns the serialized URL of the response or the empty string if the URL is null.
**/
var responseURL(default,null) : String;
/**
Returns an `unsigned short` with the status of the response of the request.
**/
var status(default,null) : Int;
/**
Returns a `DOMString` containing the response string returned by the HTTP server. Unlike `XMLHTTPRequest.status`, this includes the entire text of the response message ("`200 OK`", for example).
**/
var statusText(default,null) : String;
/**
Is an enumerated value that defines the response type.
**/
var responseType : XMLHttpRequestResponseType;
/**
Returns an `ArrayBuffer`, `Blob`, `Document`, JavaScript object, or a `DOMString`, depending on the value of `XMLHttpRequest.responseType`. that contains the response entity body.
**/
var response(default,null) : Dynamic;
/**
Returns a `DOMString` that contains the response to the request as text, or `null` if the request was unsuccessful or has not yet been sent.
**/
var responseText(default,null) : String;
/**
Returns a `Document` containing the response to the request, or `null` if the request was unsuccessful, has not yet been sent, or cannot be parsed as XML or HTML.
**/
var responseXML(default,null) : HTMLDocument;
/** @throws DOMError */
@:overload( function( ?params : Dynamic/*MISSING MozXMLHttpRequestParameters*/ ) : Void {} )
function new( ignored : String ) : Void;
/**
Initializes a request. This method is to be used from JavaScript code; to initialize a request from native code, use `openRequest()` instead.
@throws DOMError
**/
@:overload( function( method : String, url : String ) : Void {} )
function open( method : String, url : String, async : Bool, ?user : String, ?password : String ) : Void;
/**
Sets the value of an HTTP request header. You must call `setRequestHeader()`after `open()`, but before `send()`.
@throws DOMError
**/
function setRequestHeader( header : String, value : String ) : Void;
/**
Sends the request. If the request is asynchronous (which is the default), this method returns as soon as the request is sent.
@throws DOMError
**/
@:overload( function( ?body : Blob) : Void {} )
@:overload( function( ?body : js.lib.ArrayBufferView) : Void {} )
@:overload( function( ?body : js.lib.ArrayBuffer) : Void {} )
@:overload( function( ?body : FormData) : Void {} )
@:overload( function( ?body : URLSearchParams) : Void {} )
@:overload( function( ?body : String) : Void {} )
function send( ?body : HTMLDocument ) : Void;
/**
Aborts the request if it has already been sent.
@throws DOMError
**/
function abort() : Void;
/**
Returns the string containing the text of the specified header, or `null` if either the response has not yet been received or the header doesn't exist in the response.
@throws DOMError
**/
function getResponseHeader( header : String ) : String;
/**
Returns all the response headers, separated by CRLF, as a string, or `null` if no response has been received.
@throws DOMError
**/
function getAllResponseHeaders() : String;
/**
Overrides the MIME type returned by the server.
@throws DOMError
**/
function overrideMimeType( mime : String ) : Void;
}