PemCertificateList 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
PemCertificateList(IEnumerable<String>) |
Initializes a new instance of PemCertificateList. |
PemCertificateList(IList<X509Certificate2>) |
Initializes a new instance of the PemCertificateList class. |
PemCertificateList(X509Certificate2[]) |
Initializes a new instance of the PemCertificateList class. |
PemCertificateList(IEnumerable<String>)
- Source:
- PemCertificateList.cs
Initializes a new instance of PemCertificateList.
public PemCertificateList (System.Collections.Generic.IEnumerable<string> certificates);
new Azure.Media.VideoAnalyzer.Edge.Models.PemCertificateList : seq<string> -> Azure.Media.VideoAnalyzer.Edge.Models.PemCertificateList
Public Sub New (certificates As IEnumerable(Of String))
Parameters
- certificates
- IEnumerable<String>
PEM formatted public certificates. One certificate per entry.
Exceptions
certificates
is null.
Applies to
PemCertificateList(IList<X509Certificate2>)
- Source:
- PemCertificateList.cs
Initializes a new instance of the PemCertificateList class.
public PemCertificateList (System.Collections.Generic.IList<System.Security.Cryptography.X509Certificates.X509Certificate2> certificates);
new Azure.Media.VideoAnalyzer.Edge.Models.PemCertificateList : System.Collections.Generic.IList<System.Security.Cryptography.X509Certificates.X509Certificate2> -> Azure.Media.VideoAnalyzer.Edge.Models.PemCertificateList
Public Sub New (certificates As IList(Of X509Certificate2))
Parameters
- certificates
- IList<X509Certificate2>
The list of certificates.
Applies to
PemCertificateList(X509Certificate2[])
- Source:
- PemCertificateList.cs
Initializes a new instance of the PemCertificateList class.
public PemCertificateList (params System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates);
new Azure.Media.VideoAnalyzer.Edge.Models.PemCertificateList : System.Security.Cryptography.X509Certificates.X509Certificate2[] -> Azure.Media.VideoAnalyzer.Edge.Models.PemCertificateList
Public Sub New (ParamArray certificates As X509Certificate2())
Parameters
- certificates
- X509Certificate2[]
The certificates params.
Applies to
Azure SDK for .NET