API Reference
Struct
ZoneTransferResult
Represents a chunk of records returned during a zone transfer.
Inheritance
- ValueType
- ZoneTransferResult
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
- Method ClientX.ZoneTransferAsync
- Method ClientX.ZoneTransferStreamAsync
- Method ClientX.ZoneTransferSync
Constructors
public ZoneTransferResult(DnsAnswer[] records, Boolean isOpening, Boolean isClosing, Int32 index) #Initializes a new instance of the ZoneTransferResult struct.
Parameters
- records DnsClientX.DnsAnswer[]
- isOpening System.Boolean
- isClosing System.Boolean
- index System.Int32
Methods
Inherited Methods
Properties
public DnsAnswer[] Records { get; } #Records contained in this chunk.
public Boolean IsOpening { get; } #True if the chunk contains the opening SOA record.
public Boolean IsClosing { get; } #True if the chunk contains the closing SOA record.
public Int32 Index { get; } #Zero-based sequence number of this chunk.
public Nullable<DnsAnswer> SoaRecord { get; } #Gets the SOA record when IsOpening or IsClosing is true; otherwise, null.