Share via


SoaRecord Constructors

Definition

Overloads

SoaRecord()

Initializes a new instance of the SoaRecord class.

SoaRecord(String, String, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>)

Initializes a new instance of the SoaRecord class.

SoaRecord()

Initializes a new instance of the SoaRecord class.

public SoaRecord ();
Public Sub New ()

Applies to

SoaRecord(String, String, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>)

Initializes a new instance of the SoaRecord class.

public SoaRecord (string host = default, string email = default, long? serialNumber = default, long? refreshTime = default, long? retryTime = default, long? expireTime = default, long? minimumTtl = default);
new Microsoft.Azure.Management.Dns.Models.SoaRecord : string * string * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> -> Microsoft.Azure.Management.Dns.Models.SoaRecord
Public Sub New (Optional host As String = Nothing, Optional email As String = Nothing, Optional serialNumber As Nullable(Of Long) = Nothing, Optional refreshTime As Nullable(Of Long) = Nothing, Optional retryTime As Nullable(Of Long) = Nothing, Optional expireTime As Nullable(Of Long) = Nothing, Optional minimumTtl As Nullable(Of Long) = Nothing)

Parameters

host
String

The domain name of the authoritative name server for this SOA record.

email
String

The email contact for this SOA record.

serialNumber
Nullable<Int64>

The serial number for this SOA record.

refreshTime
Nullable<Int64>

The refresh value for this SOA record.

retryTime
Nullable<Int64>

The retry time for this SOA record.

expireTime
Nullable<Int64>

The expire time for this SOA record.

minimumTtl
Nullable<Int64>

The minimum value for this SOA record. By convention this is used to determine the negative caching duration.

Applies to