Move returns null if the move operation is across two mailboxes or between a mailbox and a public folder.
public Task<Item> Move(
FolderId destinationFolderId,
CancellationToken token = default
)
Public Function Move (
destinationFolderId As FolderId,
Optional token As CancellationToken = Nothing
) As Task(Of Item)
public:
Task<Item^>^ Move(
FolderId^ destinationFolderId,
CancellationToken token = CancellationToken()
)
member Move :
destinationFolderId : FolderId *
?token : CancellationToken
(* Defaults:
let _token = defaultArg token new CancellationToken()
*)
-> Task<Item>