Click or drag to resize
MimeKit

UniqueIdSetCopyTo Method

Copies all of the unique ids in the set to the specified array.

Namespace: MailKit
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
public void CopyTo(
	UniqueId[] array,
	int arrayIndex
)

Parameters

array  UniqueId
The array to copy the unique ids to.
arrayIndex  Int32
The index into the array.

Implements

ICollectionTCopyTo(T, Int32)
Exceptions
ExceptionCondition
ArgumentNullExceptionarray is null.
ArgumentOutOfRangeExceptionarrayIndex is out of set.
Remarks
Copies all of the unique ids within the set into the array, starting at the specified array index.
See Also