X509CertificateProperties Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
- subjectAlternativeNames
- SubjectAlternativeNames
The subject alternative names.
Applies to
Azure SDK for .NET