edgeport - v1.0.6
    Preparing search index...

    Interface RawQuery

    A raw DNS query for the level-3 DnsSession.query path.

    1.0.4

    interface RawQuery {
        dnssec?: boolean;
        id?: number;
        opcode?: number;
        questions: QuestionInput[];
        recursionDesired?: boolean;
    }
    Index
    dnssec?: boolean

    Request DNSSEC records via an EDNS0 OPT record with the DO bit set.

    id?: number

    Override the 16-bit query id (a random unused id is allocated otherwise).

    opcode?: number

    The opcode; defaults to Opcode.QUERY.

    questions: QuestionInput[]

    The questions to ask (usually one).

    recursionDesired?: boolean

    Set the Recursion Desired flag; defaults to true.