ImapClientMoveMessagesAsync Method (Int32, Int32, String, Boolean) |
Moves the message
Namespace:
Aspose.Email.Clients.Imap
Assembly:
Aspose.Email (in Aspose.Email.dll) Version: 22.4
Syntaxpublic Task MoveMessagesAsync(
int startSequence,
int endSequence,
string folderName,
bool commitDeletions
)
Public Function MoveMessagesAsync (
startSequence As Integer,
endSequence As Integer,
folderName As String,
commitDeletions As Boolean
) As Task
public:
Task^ MoveMessagesAsync(
int startSequence,
int endSequence,
String^ folderName,
bool commitDeletions
)
member MoveMessagesAsync :
startSequence : int *
endSequence : int *
folderName : string *
commitDeletions : bool -> Task
Parameters
- startSequence
- Type: SystemInt32
The starting sequence number of a message list - endSequence
- Type: SystemInt32
The ending sequence number 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