Flags the message with specified flag.

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

Syntax

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

Parameters

uid
Type: System..::..Int64
Unique-id of the message to flag.
flag
Type: Limilabs.Client.IMAP..::..Flag
Flag to be added. For specifying system flags you can use static fields e.g. Seen.

Return Value

List containing flags of the specified message after the change.

Remarks

Exchange 2007 and 2010 do not support custom flags (keywords).

See Also