Copies the specified messages to the specified destination folder (mailbox).

Namespace: Limilabs.Client.IMAP
Assembly: Mail (in Mail.dll) Version: 3.0.12102.1426

Syntax

C#
public List<long> CopyByUID(
	List<long> uids,
	FolderInfo destinationFolder
)
Visual Basic
Public Function CopyByUID ( _
	uids As List(Of Long), _
	destinationFolder As FolderInfo _
) As List(Of Long)
Visual C++
public:
List<long long>^ CopyByUID(
	List<long long>^ uids, 
	FolderInfo^ destinationFolder
)

Parameters

uids
Type: System.Collections.Generic..::..List<(Of <(<'Int64>)>)>
Unique-ids of the messages.
destinationFolder
Type: Limilabs.Client.IMAP..::..FolderInfo
Destination folder (mailbox).

Return Value

Unique-ids of the copied messages if the server supports UniqueIdPlus, empty otherwise.

See Also