KeyInfoX509Data.IssuerSerials Property
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.
Gets a list of X509IssuerSerial structures that represent an issuer name and serial number pair.
public:
property System::Collections::ArrayList ^ IssuerSerials { System::Collections::ArrayList ^ get(); };
public System.Collections.ArrayList? IssuerSerials { get; }
public System.Collections.ArrayList IssuerSerials { get; }
member this.IssuerSerials : System.Collections.ArrayList
Public ReadOnly Property IssuerSerials As ArrayList
Property Value
A list of X509IssuerSerial structures that represent an issuer name and serial number pair.
Remarks
The IssuerSerials property represents the <X509IssuerSerial>
element of an XML digital signature using a list of X509IssuerSerial structures contained within. The <X509IssuerSerial>
element represents an issuer name and serial number pair, which identify a specific X.509v3 certificate.
The issuer of an X.509 certificate is the name of the certification authority that issued the certificate. Certification authorities assign each certificate they issue a unique serial number.
You can add a name and serial number pair using the AddIssuerSerial method.