API Reference
Class
NaptrRecord
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
- Order of this record.
- preference System.UInt16
- Preference among equal-order records.
- flags System.String
- Control flags.
- service System.String
- Service parameters.
- regExp System.String
- Rewrite expression.
- replacement System.String
- Replacement domain.
Inherited Methods
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 RegExp { get; } #Gets the regular expression used for rewriting.
public String Replacement { get; } #Gets the replacement domain name.