| ImapGetSpecificHeadersByUIDAsync Method (ListInt64, String) |
Gets specific headers of the specified email messages from server.
Namespace:
Limilabs.Client.IMAP
Assembly:
Mail (in Mail.dll) Version: 3.0.23341.1754
Syntax public Task<List<MessageData>> GetSpecificHeadersByUIDAsync(
List<long> uids,
string[] headers
)
Public Function GetSpecificHeadersByUIDAsync (
uids As List(Of Long),
headers As String()
) As Task(Of List(Of MessageData))
public:
Task<List<MessageData^>^>^ GetSpecificHeadersByUIDAsync(
List<long long>^ uids,
array<String^>^ headers
)
member GetSpecificHeadersByUIDAsync :
uids : List<int64> *
headers : string[] -> Task<List<MessageData>>
Parameters
- uids
- Type: System.Collections.GenericListInt64
Unique-ids of the messages to get information for. - headers
- Type: SystemString
Headers to get.
Return Value
Type:
TaskListMessageDataList of message data objects containing specific messages headers.
See Also