ImapClientMoveMessagesAsync Method (IConnection, String, String, String, Boolean) |
Moves the message
Namespace:
Aspose.Email.Clients.Imap
Assembly:
Aspose.Email (in Aspose.Email.dll) Version: 22.4
Syntaxpublic Task MoveMessagesAsync(
IConnection connection,
string startUid,
string endUid,
string folderName,
bool commitDeletions
)
Public Function MoveMessagesAsync (
connection As IConnection,
startUid As String,
endUid As String,
folderName As String,
commitDeletions As Boolean
) As Task
public:
Task^ MoveMessagesAsync(
IConnection^ connection,
String^ startUid,
String^ endUid,
String^ folderName,
bool commitDeletions
)
member MoveMessagesAsync :
connection : IConnection *
startUid : string *
endUid : string *
folderName : string *
commitDeletions : bool -> Task
Parameters
- connection
- Type: Aspose.Email.ClientsIConnection
Connection to a server - startUid
- Type: SystemString
The starting UID of a message list - endUid
- Type: SystemString
The ending UID of a message list - folderName
- Type: SystemString
Folder name where a message is to be moved - commitDeletions
- Type: SystemBoolean
Specifies whether deletions should be committed.
Return Value
Type:
TaskTask object, with delegate for this operation
See Also