Gets specific headers of the specified email messages from server.

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

Syntax

C#
public List<MessageData> GetSpecificHeadersByUID(
	List<long> uids,
	string[] headers
)
Visual Basic
Public Function GetSpecificHeadersByUID ( _
	uids As List(Of Long), _
	headers As String() _
) As List(Of MessageData)
Visual C++
public:
List<MessageData^>^ GetSpecificHeadersByUID(
	List<long long>^ uids, 
	array<String^>^ headers
)

Parameters

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

Return Value

List of message data objects containing specific messages headers.

See Also