Gets flags for the specified email messages from server. Does not set the Seen.

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

Syntax

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

Parameters

uids
Type: System.Collections.Generic..::..List<(Of <(<'Int64>)>)>
Unique-ids of the messages to get flags for.

Return Value

List containing flags of the specified messages.

See Also