KeyInfoX509Data.AddIssuerSerial(String, String) Method

Definition

Adds the specified issuer name and serial number pair to the KeyInfoX509Data object.

public:
 void AddIssuerSerial(System::String ^ issuerName, System::String ^ serialNumber);
public void AddIssuerSerial (string issuerName, string serialNumber);
member this.AddIssuerSerial : string * string -> unit
Public Sub AddIssuerSerial (issuerName As String, serialNumber As String)

Parameters

issuerName
String

The issuer name portion of the pair to add to the KeyInfoX509Data object.

serialNumber
String

The serial number portion of the pair to add to the KeyInfoX509Data object.

Remarks

For identification, each X.509v3 certificate carries the name of the certification authority that issued the certificate paired with a unique serial number assigned by the certification authority.

The AddIssuerSerial method adds information about an issuer name and serial number pair to a list of X509IssuerSerial objects that are accessible through the IssuerSerials property.

Applies to

See also