Removes specified flag from messages.

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

Syntax

C#
public List<MessageFlags> UnflagMessageByUID(
	List<long> uids,
	Flag flag
)
Visual Basic
Public Function UnflagMessageByUID ( _
	uids As List(Of Long), _
	flag As Flag _
) As List(Of MessageFlags)
Visual C++
public:
List<MessageFlags^>^ UnflagMessageByUID(
	List<long long>^ uids, 
	Flag^ flag
)

Parameters

uids
Type: System.Collections.Generic..::..List<(Of <(<'Int64>)>)>
Unique-id of the message to remove flag from.
flag
Type: Limilabs.Client.IMAP..::..Flag
Flag to be removed. For specifying system flags you can use static fields e.g. Seen.

Return Value

List containing flags of the specified messages after the change.

See Also