Chartbreaker
    Preparing search index...

    Interface Headers_2

    This Fetch API interface allows you to perform various actions on HTTP request and response headers. These actions include retrieving, setting, adding to, and removing. A Headers object has an associated header list, which is initially empty and consists of zero or more name and value pairs.  You can add to this using methods like append() (see Examples.) In all methods of this interface, header names are matched by case-insensitive byte sequence.

    interface Headers_2 {
        append(name: string, value: string): void;
        delete(name: string): void;
        forEach(
            callbackfn: (value: string, key: string, parent: Headers_2) => void,
            thisArg?: any,
        ): void;
        get(name: string): null | string;
        has(name: string): boolean;
        set(name: string, value: string): void;
    }
    Index

    Methods

    • Parameters

      • name: string
      • value: string

      Returns void

    • Parameters

      • name: string

      Returns void

    • Parameters

      • callbackfn: (value: string, key: string, parent: Headers_2) => void
      • OptionalthisArg: any

      Returns void

    • Parameters

      • name: string

      Returns null | string

    • Parameters

      • name: string

      Returns boolean

    • Parameters

      • name: string
      • value: string

      Returns void