edgeport - v1.0.6
    Preparing search index...

    Interface DnsResponse

    The full structured response returned by the raw DnsSession.query.

    1.0.4

    interface DnsResponse {
        additional: ResourceRecord[];
        answers: ResourceRecord[];
        authority: ResourceRecord[];
        flags: DnsFlags;
        id: number;
        question: Question[];
        rcode: number;
    }
    Index
    additional: ResourceRecord[]

    The additional records (glue, and the server's OPT record).

    answers: ResourceRecord[]

    The answer records.

    authority: ResourceRecord[]

    The authority records (e.g. the SOA on an NXDOMAIN, or NS delegations).

    flags: DnsFlags

    The decoded flags word.

    id: number

    The response id (matches the query).

    question: Question[]

    The echoed question section.

    rcode: number

    The response code (exposed as-is; the raw path never throws on an error rcode).