Gets all headers of the specified email messages from server. Use MailBuilder to create IMail object.

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

Syntax

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

Parameters

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

Return Value

List of message data objects containing message headers.

See Also