Labels the messages with specified labels.

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

Syntax

C#
public List<GmailMessageLabels> GmailLabelMessageByUID(
	List<long> uids,
	List<string> labels
)
Visual Basic
Public Function GmailLabelMessageByUID ( _
	uids As List(Of Long), _
	labels As List(Of String) _
) As List(Of GmailMessageLabels)
Visual C++
public:
List<GmailMessageLabels^>^ GmailLabelMessageByUID(
	List<long long>^ uids, 
	List<String^>^ labels
)

Parameters

uids
Type: System.Collections.Generic..::..List<(Of <(<'Int64>)>)>
Unique-id of the messages to label.
labels
Type: System.Collections.Generic..::..List<(Of <(<'String>)>)>
Labels to be added.

Return Value

List containing Gmail labels of the specified messages.

See Also