| ImapGmailLabelMessageByUIDAsync Method (ListInt64, String) |
Labels the messages with specified label.
Namespace:
Limilabs.Client.IMAP
Assembly:
Mail (in Mail.dll) Version: 3.0.23341.1754
Syntax public Task<List<GmailMessageLabels>> GmailLabelMessageByUIDAsync(
List<long> uids,
string label
)
Public Function GmailLabelMessageByUIDAsync (
uids As List(Of Long),
label As String
) As Task(Of List(Of GmailMessageLabels))
public:
Task<List<GmailMessageLabels^>^>^ GmailLabelMessageByUIDAsync(
List<long long>^ uids,
String^ label
)
member GmailLabelMessageByUIDAsync :
uids : List<int64> *
label : string -> Task<List<GmailMessageLabels>>
Parameters
- uids
- Type: System.Collections.GenericListInt64
Unique-ids of the messages to label. - label
- Type: SystemString
Label to be added.
Return Value
Type:
TaskListGmailMessageLabelsList containing Gmail labels of the specified messages.
See Also