X509Certificate2Collection.AddRange Method

Definition

Adds multiple X509Certificate2 objects to an X509Certificate2Collection object.

Overloads

AddRange(X509Certificate2[])

Adds multiple X509Certificate2 objects in an array to the X509Certificate2Collection object.

AddRange(X509Certificate2Collection)

Adds multiple X509Certificate2 objects in an X509Certificate2Collection object to another X509Certificate2Collection object.

AddRange(X509Certificate2[])

Source:
X509Certificate2Collection.cs
Source:
X509Certificate2Collection.cs
Source:
X509Certificate2Collection.cs

Adds multiple X509Certificate2 objects in an array to the X509Certificate2Collection object.

public:
 void AddRange(cli::array <System::Security::Cryptography::X509Certificates::X509Certificate2 ^> ^ certificates);
public void AddRange (System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates);
override this.AddRange : System.Security.Cryptography.X509Certificates.X509Certificate2[] -> unit
Public Sub AddRange (certificates As X509Certificate2())

Parameters

certificates
X509Certificate2[]

An array of X509Certificate2 objects.

Exceptions

certificates is null.

Remarks

Use this method if you have an array of X509Certificate2 objects to add to an X509Certificate2Collection object. The AddRange and RemoveRange methods process requests transactionally, so that if a single add or remove fails, the entire operation is aborted.

Applies to

AddRange(X509Certificate2Collection)

Source:
X509Certificate2Collection.cs
Source:
X509Certificate2Collection.cs
Source:
X509Certificate2Collection.cs

Adds multiple X509Certificate2 objects in an X509Certificate2Collection object to another X509Certificate2Collection object.

public:
 void AddRange(System::Security::Cryptography::X509Certificates::X509Certificate2Collection ^ certificates);
public void AddRange (System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates);
override this.AddRange : System.Security.Cryptography.X509Certificates.X509Certificate2Collection -> unit
Public Sub AddRange (certificates As X509Certificate2Collection)

Parameters

Exceptions

certificates is null.

Remarks

Use this method if you have certificates in an X509Certificate2Collection object that you want to add to another X509Certificate2Collection object. The AddRange and RemoveRange methods process requests transactionally, so that if a single add or remove fails, the entire operation is aborted.

Applies to