EwsCreateFolder Method
Creates 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 CreateFolder(
	string newFolderName,
	FolderId parentFolderId
)

Parameters

newFolderName
Type: SystemString
The folder name. Null reference (Nothing in Visual Basic) or empty string not allowed.
parentFolderId
Type: FolderId
The ID of the parent folder where to create the new folder. If a null reference (Nothing in Visual Basic), RootFolderType will be assumed.

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

newFolderName must be a short name (not a full name with nested folder names in it). To create a folder by its full name, you'll need to create all levels separately (if they do not already exist).

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