SrvRecord Constructors

Definition

Overloads

SrvRecord()

Initializes a new instance of the SrvRecord class.

SrvRecord(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, String)

Initializes a new instance of the SrvRecord class.

SrvRecord()

Initializes a new instance of the SrvRecord class.

public SrvRecord ();
Public Sub New ()

Applies to

SrvRecord(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, String)

Initializes a new instance of the SrvRecord class.

public SrvRecord (int? priority = default, int? weight = default, int? port = default, string target = default);
new Microsoft.Azure.Management.Dns.Models.SrvRecord : Nullable<int> * Nullable<int> * Nullable<int> * string -> Microsoft.Azure.Management.Dns.Models.SrvRecord
Public Sub New (Optional priority As Nullable(Of Integer) = Nothing, Optional weight As Nullable(Of Integer) = Nothing, Optional port As Nullable(Of Integer) = Nothing, Optional target As String = Nothing)

Parameters

priority
Nullable<Int32>

The priority value for this SRV record.

weight
Nullable<Int32>

The weight value for this SRV record.

port
Nullable<Int32>

The port value for this SRV record.

target
String

The target domain name for this SRV record.

Applies to