Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • XMLHttpRequest
    • ExtendedXMLHttpRequest

Index

Properties

Optional $url

$url: string

Readonly DONE

DONE: number

Readonly HEADERS_RECEIVED

HEADERS_RECEIVED: number

Readonly LOADING

LOADING: number

Readonly OPENED

OPENED: number

Readonly UNSENT

UNSENT: number

onabort

onabort: (ev: ProgressEvent<EventTarget>) => any

Type declaration

    • (ev: ProgressEvent<EventTarget>): any
    • Parameters

      • ev: ProgressEvent<EventTarget>

      Returns any

onerror

onerror: (ev: ProgressEvent<EventTarget>) => any

Type declaration

    • (ev: ProgressEvent<EventTarget>): any
    • Parameters

      • ev: ProgressEvent<EventTarget>

      Returns any

onload

onload: (ev: ProgressEvent<EventTarget>) => any

Type declaration

    • (ev: ProgressEvent<EventTarget>): any
    • Parameters

      • ev: ProgressEvent<EventTarget>

      Returns any

onloadend

onloadend: (ev: ProgressEvent<EventTarget>) => any

Type declaration

    • (ev: ProgressEvent<EventTarget>): any
    • Parameters

      • ev: ProgressEvent<EventTarget>

      Returns any

onloadstart

onloadstart: (ev: ProgressEvent<EventTarget>) => any

Type declaration

    • (ev: ProgressEvent<EventTarget>): any
    • Parameters

      • ev: ProgressEvent<EventTarget>

      Returns any

onprogress

onprogress: (ev: ProgressEvent<EventTarget>) => any

Type declaration

    • (ev: ProgressEvent<EventTarget>): any
    • Parameters

      • ev: ProgressEvent<EventTarget>

      Returns any

onreadystatechange

onreadystatechange: (ev: Event) => any

Type declaration

    • (ev: Event): any
    • Parameters

      • ev: Event

      Returns any

ontimeout

ontimeout: (ev: ProgressEvent<EventTarget>) => any

Type declaration

    • (ev: ProgressEvent<EventTarget>): any
    • Parameters

      • ev: ProgressEvent<EventTarget>

      Returns any

Readonly readyState

readyState: number

Returns client's state.

Readonly response

response: any

Returns the response's body.

Readonly responseText

responseText: string

Returns the text response.

Throws an "InvalidStateError" DOMException if responseType is not the empty string or "text".

responseType

responseType: XMLHttpRequestResponseType

Returns the response type.

Can be set to change the response type. Values are: the empty string (default), "arraybuffer", "blob", "document", "json", and "text".

When set: setting to "document" is ignored if current global object is not a Window object.

When set: throws an "InvalidStateError" DOMException if state is loading or done.

When set: throws an "InvalidAccessError" DOMException if the synchronous flag is set and current global object is a Window object.

Readonly responseURL

responseURL: string

Readonly responseXML

responseXML: Document

Returns the document response.

Throws an "InvalidStateError" DOMException if responseType is not the empty string or "document".

Readonly status

status: number

Readonly statusText

statusText: string

timeout

timeout: number

Can be set to a time in milliseconds. When set to a non-zero value will cause fetching to terminate after the given time has passed. When the time has passed, the request has not yet completed, and the synchronous flag is unset, a timeout event will then be dispatched, or a "TimeoutError" DOMException will be thrown otherwise (for the send() method).

When set: throws an "InvalidAccessError" DOMException if the synchronous flag is set and current global object is a Window object.

Readonly upload

upload: XMLHttpRequestUpload

Returns the associated XMLHttpRequestUpload object. It can be used to gather transmission information when data is transferred to a server.

withCredentials

withCredentials: boolean

True when credentials are to be included in a cross-origin request. False when they are to be excluded in a cross-origin request and when cookies are to be ignored in its response. Initially false.

When set: throws an "InvalidStateError" DOMException if state is not unsent or opened, or if the send() flag is set.

Methods

abort

  • abort(): void
  • Cancels any network activity.

    Returns void

addEventListener

  • addEventListener<K>(type: K, listener: (ev: XMLHttpRequestEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void
  • addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void
  • Type parameters

    • K: "error" | "readystatechange" | "abort" | "load" | "loadend" | "loadstart" | "progress" | "timeout"

    Parameters

    • type: K
    • listener: (ev: XMLHttpRequestEventMap[K]) => any
        • (ev: XMLHttpRequestEventMap[K]): any
        • Parameters

          • ev: XMLHttpRequestEventMap[K]

          Returns any

    • Optional options: boolean | AddEventListenerOptions

    Returns void

  • Parameters

    • type: string
    • listener: EventListenerOrEventListenerObject
    • Optional options: boolean | AddEventListenerOptions

    Returns void

dispatchEvent

  • dispatchEvent(event: Event): boolean
  • Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.

    Parameters

    • event: Event

    Returns boolean

getAllResponseHeaders

  • getAllResponseHeaders(): string
  • Returns string

getResponseHeader

  • getResponseHeader(name: string): string
  • Parameters

    • name: string

    Returns string

open

  • open(method: string, url: string): void
  • open(method: string, url: string, async: boolean, username?: string, password?: string): void
  • Sets the request method, request URL, and synchronous flag.

    Throws a "SyntaxError" DOMException if either method is not a valid HTTP method or url cannot be parsed.

    Throws a "SecurityError" DOMException if method is a case-insensitive match for CONNECT, TRACE, or TRACK.

    Throws an "InvalidAccessError" DOMException if async is false, current global object is a Window object, and the timeout attribute is not zero or the responseType attribute is not the empty string.

    Parameters

    • method: string
    • url: string

    Returns void

  • Parameters

    • method: string
    • url: string
    • async: boolean
    • Optional username: string
    • Optional password: string

    Returns void

overrideMimeType

  • overrideMimeType(mime: string): void
  • Acts as if the Content-Type header value for response is mime. (It does not actually change the header though.)

    Throws an "InvalidStateError" DOMException if state is loading or done.

    Parameters

    • mime: string

    Returns void

removeEventListener

  • removeEventListener<K>(type: K, listener: (ev: XMLHttpRequestEventMap[K]) => any, options?: boolean | EventListenerOptions): void
  • removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void
  • Type parameters

    • K: "error" | "readystatechange" | "abort" | "load" | "loadend" | "loadstart" | "progress" | "timeout"

    Parameters

    • type: K
    • listener: (ev: XMLHttpRequestEventMap[K]) => any
        • (ev: XMLHttpRequestEventMap[K]): any
        • Parameters

          • ev: XMLHttpRequestEventMap[K]

          Returns any

    • Optional options: boolean | EventListenerOptions

    Returns void

  • Parameters

    • type: string
    • listener: EventListenerOrEventListenerObject
    • Optional options: boolean | EventListenerOptions

    Returns void

send

  • send(body?: string | Document | Blob | ArrayBufferView | ArrayBuffer | FormData | URLSearchParams | ReadableStream<Uint8Array>): void
  • Initiates the request. The body argument provides the request body, if any, and is ignored if the request method is GET or HEAD.

    Throws an "InvalidStateError" DOMException if either state is not opened or the send() flag is set.

    Parameters

    • Optional body: string | Document | Blob | ArrayBufferView | ArrayBuffer | FormData | URLSearchParams | ReadableStream<Uint8Array>

    Returns void

setRequestHeader

  • setRequestHeader(name: string, value: string): void
  • Combines a header in author request headers.

    Throws an "InvalidStateError" DOMException if either state is not opened or the send() flag is set.

    Throws a "SyntaxError" DOMException if name is not a header name or if value is not a header value.

    Parameters

    • name: string
    • value: string

    Returns void

Generated using TypeDoc