DNS records in the Additional section of the response.

Namespace:  JHSoftware
Assembly:  JHSoftware.DnsClient (in JHSoftware.DnsClient.dll) Version: 1.0.1.0 (1.0.1.0)

Syntax

C#
public ReadOnlyCollection<DnsClient..::.Response..::.Record> AdditionalRecords { get; }
Visual Basic (Declaration)
Public ReadOnly Property AdditionalRecords As ReadOnlyCollection(Of DnsClient..::.Response..::.Record)

Remarks

A DNS response contains 3 sections, each containing a number of DNS records:
1) The Answer section contains records corresponding to the requested domain name and type.
2) The Authority section may contain a SOA-record indicating which DNS zone the requested domain name belongs to, and/or NS-records indicating the DNS servers responsible for the requested domain name.
3) The Additional section contains any records which the DNS server thought might help the client - for example host (A) records matching the host names pointed to by MX-records in the Answer section.

See Also