Struct SrvRecord
- Namespace
- AppleTvControlLibrary.Discovery.Dns
- Assembly
- AppleTvControlLibrary.Discovery.dll
Represents a parsed DNS SRV record's RDATA.
public readonly struct SrvRecord
- Inherited Members
Remarks
Initializes a new instance of the SrvRecord struct.
Constructors
SrvRecord(ushort, ushort, ushort, string)
Represents a parsed DNS SRV record's RDATA.
public SrvRecord(ushort priority, ushort weight, ushort port, string target)
Parameters
Remarks
Initializes a new instance of the SrvRecord struct.
Properties
Port
Gets the target service port.
public ushort Port { get; }
Property Value
Priority
Gets the record priority.
public ushort Priority { get; }
Property Value
Target
Gets the target host name.
public string Target { get; }
Property Value
Weight
Gets the record weight.
public ushort Weight { get; }