共用方式為


X509CertificateProperties Constructors

Definition

Overloads

X509CertificateProperties()

Initializes a new instance of the X509CertificateProperties class.

X509CertificateProperties(String, IList<String>, SubjectAlternativeNames, IList<String>, Nullable<Int32>)

Initializes a new instance of the X509CertificateProperties class.

X509CertificateProperties()

Source:
X509CertificateProperties.cs

Initializes a new instance of the X509CertificateProperties class.

public X509CertificateProperties ();
Public Sub New ()

Applies to

X509CertificateProperties(String, IList<String>, SubjectAlternativeNames, IList<String>, Nullable<Int32>)

Source:
X509CertificateProperties.cs

Initializes a new instance of the X509CertificateProperties class.

public X509CertificateProperties (string subject = default, System.Collections.Generic.IList<string> ekus = default, Microsoft.Azure.KeyVault.Models.SubjectAlternativeNames subjectAlternativeNames = default, System.Collections.Generic.IList<string> keyUsage = default, int? validityInMonths = default);
new Microsoft.Azure.KeyVault.Models.X509CertificateProperties : string * System.Collections.Generic.IList<string> * Microsoft.Azure.KeyVault.Models.SubjectAlternativeNames * System.Collections.Generic.IList<string> * Nullable<int> -> Microsoft.Azure.KeyVault.Models.X509CertificateProperties
Public Sub New (Optional subject As String = Nothing, Optional ekus As IList(Of String) = Nothing, Optional subjectAlternativeNames As SubjectAlternativeNames = Nothing, Optional keyUsage As IList(Of String) = Nothing, Optional validityInMonths As Nullable(Of Integer) = Nothing)

Parameters

subject
String

The subject name. Should be a valid X509 distinguished Name.

ekus
IList<String>

The enhanced key usage.

subjectAlternativeNames
SubjectAlternativeNames

The subject alternative names.

keyUsage
IList<String>

List of key usages.

validityInMonths
Nullable<Int32>

The duration that the ceritifcate is valid in months.

Applies to