EwsRenameFolder Method
Renames a folder in the MS Exchange account.

Namespace: MailBee.EwsMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public bool RenameFolder(
	string folderNewName,
	FolderId id
)

Parameters

folderNewName
Type: SystemString
The new name of the folder. Null reference (Nothing in Visual Basic) or empty string not allowed.
id
Type: FolderId
The ID of the folder being renamed. Null reference not allowed.

Return Value

Type: Boolean
true if succeeded; otherwise, false.
Exceptions
ExceptionCondition
MailBeeExceptionAn error occurred and ThrowExceptions is true.
NotImplementedExceptionThe .NET runtime is .NET Core.
Remarks

folderNewName must be a short name (not a full name with nested folder names in it). You can use RenameOrMoveFolder(String, String, ListEwsFolder) method to rename a folder by its full name.

Note Note
This method is not implemented in .NET Core. Use RenameFolderAsync(String, FolderId) instead.
See Also