Class

org.danielnixon.saferdom.impl.lib

SaferXMLHttpRequest

Related Doc: package lib

Permalink

implicit final class SaferXMLHttpRequest extends AnyVal

See also

https://xhr.spec.whatwg.org/#interface-xmlhttprequest

Linear Supertypes
AnyVal, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SaferXMLHttpRequest
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SaferXMLHttpRequest(value: XMLHttpRequest)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def getClass(): Class[_ <: AnyVal]

    Permalink
    Definition Classes
    AnyVal → Any
  6. def getResponseHeaderOpt(header: String): Option[String]

    Permalink

    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.

    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.

    MDN

  7. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  8. def responseOpt: Option[Any]

    Permalink

    The response entity body according to responseType, as an ArrayBuffer, Blob, Document, JavaScript object (for "json"), or string.

    The response entity body according to responseType, as an ArrayBuffer, Blob, Document, JavaScript object (for "json"), or string. This is null if the request is not complete or was not successful.

    MDN

  9. def responseXMLOpt: Option[Document]

    Permalink

    The response to the request as a DOM Document object, or null if the request was unsuccessful, has not yet been sent, or cannot be parsed as XML or HTML.

    The response to the request as a DOM Document object, or null if the request was unsuccessful, has not yet been sent, or cannot be parsed as XML or HTML. The response is parsed as if it were a text/xml stream. When the responseType is set to "document" and the request has been made asynchronously, the response is parsed as a text/html stream. Note: If the server doesn't apply the text/xml Content-Type header, you can use overrideMimeType()to force XMLHttpRequest to parse it as XML anyway.

    MDN

  10. def toString(): String

    Permalink
    Definition Classes
    Any
  11. val value: XMLHttpRequest

    Permalink

Inherited from AnyVal

Inherited from Any

Ungrouped