X509Certificate2Collection.AddRange Method
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.
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[])
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)
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
- certificates
- X509Certificate2Collection
An X509Certificate2Collection object.
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.