| ImapGmailLabelMessageByUIDAsync Method (Int64, ListString) |
Labels the message with specified labels.
Namespace:
Limilabs.Client.IMAP
Assembly:
Mail (in Mail.dll) Version: 3.0.23341.1754
Syntax public Task<List<string>> GmailLabelMessageByUIDAsync(
long uid,
List<string> labels
)
Public Function GmailLabelMessageByUIDAsync (
uid As Long,
labels As List(Of String)
) As Task(Of List(Of String))
public:
Task<List<String^>^>^ GmailLabelMessageByUIDAsync(
long long uid,
List<String^>^ labels
)
member GmailLabelMessageByUIDAsync :
uid : int64 *
labels : List<string> -> Task<List<string>>
Parameters
- uid
- Type: SystemInt64
Unique-id of the message to label. - labels
- Type: System.Collections.GenericListString
Labels to be added.
Return Value
Type:
TaskListStringList containing Gmail labels of the specified message or null when
uid is incorrect.
See Also