Domain Detective

API Reference

Class

NaptrRecord

Namespace DnsClientX
Assembly DnsClientX
Modifiers sealed

Represents a NAPTR record used for dynamic service discovery.

Inheritance

  • Object
  • NaptrRecord

Remarks

Naming Authority Pointer records are specified in RFC 2915.

Constructors

public NaptrRecord(UInt16 order, UInt16 preference, String flags, String service, String regExp, String replacement) #

Initializes a new instance of the NaptrRecord class.

Parameters

order System.UInt16 requiredposition: 0
Order of this record.
preference System.UInt16 requiredposition: 1
Preference among equal-order records.
flags System.String requiredposition: 2
Control flags.
service System.String requiredposition: 3
Service parameters.
regExp System.String requiredposition: 4
Rewrite expression.
replacement System.String requiredposition: 5
Replacement domain.

Properties

public UInt16 Order { get; } #

Gets the order in which records should be processed.

public UInt16 Preference { get; } #

Gets the preference for services with the same order.

public String Flags { get; } #

Gets the control flags for the lookup.

public String Service { get; } #

Gets the service parameters.

public String RegExp { get; } #

Gets the regular expression used for rewriting.

public String Replacement { get; } #

Gets the replacement domain name.

{{ include "footer" }}