| ImapPeekHeadersByUIDAsync Method (ListInt64) |
Gets all headers of the specified email messages from server. Use
MailBuilder class to create
IMail object.
Does not set the
Seen.
Namespace:
Limilabs.Client.IMAP
Assembly:
Mail (in Mail.dll) Version: 3.0.23341.1754
Syntax public Task<List<MessageData>> PeekHeadersByUIDAsync(
List<long> uids
)
Public Function PeekHeadersByUIDAsync (
uids As List(Of Long)
) As Task(Of List(Of MessageData))
public:
Task<List<MessageData^>^>^ PeekHeadersByUIDAsync(
List<long long>^ uids
)
member PeekHeadersByUIDAsync :
uids : List<int64> -> Task<List<MessageData>>
Parameters
- uids
- Type: System.Collections.GenericListInt64
Unique-ids of the messages to get information for.
Return Value
Type:
TaskListMessageDataList of message data objects containing message headers.
See Also