Click or drag to resize
MimeKit

X509CertificateChainCopyTo Method

Copies all the certificates in the chain to the specified array.

Namespace: MimeKit.Cryptography
Assembly: MimeKit (in MimeKit.dll) Version: 4.10.0
Syntax
C#
public void CopyTo(
	X509Certificate[] array,
	int arrayIndex
)

Parameters

array  X509Certificate
The array to copy the certificates to.
arrayIndex  Int32
The index into the array.

Implements

ICollectionTCopyTo(T, Int32)
Exceptions
ExceptionCondition
ArgumentNullExceptionarray is .
ArgumentOutOfRangeExceptionarrayIndex is out of range.
Remarks
Copies all the certificates within the chain into the array, starting at the specified array index.
See Also