| ImapPeekHeadersByUIDAsync Method (Int64) |
Gets headers of the specified email message 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<byte[]> PeekHeadersByUIDAsync(
long uid
)
Public Function PeekHeadersByUIDAsync (
uid As Long
) As Task(Of Byte())
public:
Task<array<unsigned char>^>^ PeekHeadersByUIDAsync(
long long uid
)
member PeekHeadersByUIDAsync :
uid : int64 -> Task<byte[]>
Parameters
- uid
- Type: SystemInt64
Unique-id of the message to get.
Return Value
Type:
TaskByteEmail message headers or null when
uid is incorrect.
See Also