| ImapGetEnvelopeByUIDAsync Method (ListInt64) |
Gets the envelope (
Subject,
From,
To...)
of the specified email messages. Does not set the
Seen flag.
Namespace:
Limilabs.Client.IMAP
Assembly:
Mail (in Mail.dll) Version: 3.0.23341.1754
Syntax public Task<List<Envelope>> GetEnvelopeByUIDAsync(
List<long> uids
)
Public Function GetEnvelopeByUIDAsync (
uids As List(Of Long)
) As Task(Of List(Of Envelope))
public:
Task<List<Envelope^>^>^ GetEnvelopeByUIDAsync(
List<long long>^ uids
)
member GetEnvelopeByUIDAsync :
uids : List<int64> -> Task<List<Envelope>>
Parameters
- uids
- Type: System.Collections.GenericListInt64
Unique-ids of the messages to get envelope for.
Return Value
Type:
TaskListEnvelopeEnvelope information of the specified messages.
See Also