Click or drag to resize
MimeKit

InternetAddressListCopyTo Method

Copy all of the addresses in the InternetAddressList to the specified array.

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

Parameters

array  InternetAddress
The array to copy the addresses to.
arrayIndex  Int32
The index into the array.

Implements

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