Table of Contents

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

priority ushort
weight ushort
port ushort
target string

Remarks

Initializes a new instance of the SrvRecord struct.

Properties

Port

Gets the target service port.

public ushort Port { get; }

Property Value

ushort

Priority

Gets the record priority.

public ushort Priority { get; }

Property Value

ushort

Target

Gets the target host name.

public string Target { get; }

Property Value

string

Weight

Gets the record weight.

public ushort Weight { get; }

Property Value

ushort