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