Removes specified label from messages.

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

Syntax

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

Parameters

uids
Type: System.Collections.Generic..::..List<(Of <(<'Int64>)>)>
Unique-id of the message to remove specified label from.
label
Type: System..::..String
Label to be removed.

Return Value

List containing Gmail labels of the specified messages.

See Also