Share via


SigningKey Constructors

Definition

Overloads

SigningKey()

Initializes a new instance of the SigningKey class.

SigningKey(IList<DelegationSignerInfo>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, String, Nullable<Int32>)

Initializes a new instance of the SigningKey class.

SigningKey()

Initializes a new instance of the SigningKey class.

public SigningKey ();
Public Sub New ()

Applies to

SigningKey(IList<DelegationSignerInfo>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, String, Nullable<Int32>)

Initializes a new instance of the SigningKey class.

public SigningKey (System.Collections.Generic.IList<Microsoft.Azure.Management.Dns.Models.DelegationSignerInfo> delegationSignerInfo = default, int? flags = default, int? keyTag = default, int? protocol = default, string publicKey = default, int? securityAlgorithmType = default);
new Microsoft.Azure.Management.Dns.Models.SigningKey : System.Collections.Generic.IList<Microsoft.Azure.Management.Dns.Models.DelegationSignerInfo> * Nullable<int> * Nullable<int> * Nullable<int> * string * Nullable<int> -> Microsoft.Azure.Management.Dns.Models.SigningKey
Public Sub New (Optional delegationSignerInfo As IList(Of DelegationSignerInfo) = Nothing, Optional flags As Nullable(Of Integer) = Nothing, Optional keyTag As Nullable(Of Integer) = Nothing, Optional protocol As Nullable(Of Integer) = Nothing, Optional publicKey As String = Nothing, Optional securityAlgorithmType As Nullable(Of Integer) = Nothing)

Parameters

delegationSignerInfo
IList<DelegationSignerInfo>

The delegation signer information.

flags
Nullable<Int32>

The flags specifies how the key is used.

keyTag
Nullable<Int32>

The key tag value of the DNSKEY Resource Record.

protocol
Nullable<Int32>

The protocol value. The value is always 3.

publicKey
String

The public key, represented as a Base64 encoding.

securityAlgorithmType
Nullable<Int32>

The security algorithm type represents the standard security algorithm number of the DNSKEY Resource Record. See: https://www.iana.org/assignments/dns-sec-alg-numbers/dns-sec-alg-numbers.xhtml

Applies to