solid-ui
    Preparing search index...

    Interface ExtendedResponse

    An extended interface of Response, since RDFlib.js adds some properties.

    interface ExtendedResponse {
        body: null | ReadableStream<Uint8Array<ArrayBuffer>>;
        bodyUsed: boolean;
        error?: string;
        headers: Headers;
        ok: boolean;
        redirected: boolean;
        req?: Quad_Subject;
        responseText?: string;
        size?: number;
        status: number;
        statusText: string;
        timeout?: number;
        type: ResponseType;
        url: string;
        arrayBuffer(): Promise<ArrayBuffer>;
        blob(): Promise<Blob>;
        bytes(): Promise<Uint8Array<ArrayBuffer>>;
        clone(): Response;
        formData(): Promise<FormData>;
        json(): Promise<any>;
        text(): Promise<string>;
    }

    Hierarchy

    • Response
      • ExtendedResponse
    Index

    Properties

    body: null | ReadableStream<Uint8Array<ArrayBuffer>>
    bodyUsed: boolean
    error?: string

    Used in UpdateManager.updateDav

    headers: Headers

    The headers read-only property of the with the response.

    MDN Reference

    ok: boolean

    The ok read-only property of the Response interface contains a Boolean stating whether the response was successful (status in the range 200-299) or not.

    MDN Reference

    redirected: boolean

    The redirected read-only property of the Response interface indicates whether or not the response is the result of a request you made which was redirected.

    MDN Reference

    req?: Quad_Subject

    Identifier of the reqest

    responseText?: string

    String representation of the Body

    size?: number
    status: number

    The status read-only property of the Response interface contains the HTTP status codes of the response.

    MDN Reference

    statusText: string

    The statusText read-only property of the Response interface contains the status message corresponding to the HTTP status code in Response.status.

    MDN Reference

    timeout?: number
    type: ResponseType

    The type read-only property of the Response interface contains the type of the response.

    MDN Reference

    url: string

    The url read-only property of the Response interface contains the URL of the response.

    MDN Reference

    Methods

    • Returns Promise<ArrayBuffer>

    • Returns Promise<Blob>

    • Returns Promise<Uint8Array<ArrayBuffer>>

    • The clone() method of the Response interface creates a clone of a response object, identical in every way, but stored in a different variable.

      MDN Reference

      Returns Response

    • Returns Promise<FormData>

    • Returns Promise<any>

    • Returns Promise<string>