FolderStatusRawFolderName Property
Gets the full name of the folder as was returned by the server including parent folder names if any.

Namespace: MailBee.ImapMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public string RawFolderName { get; }

Property Value

Type: String
The string containing the full name of the folder as was returned by the server including parent folder names if any, or a null reference (Nothing in Visual Basic) if the folder name is not available.
Remarks
Unlike FolderName, RawFolderName is not automatically decoded from UTF-7 Modified encoding. The developer can use RawFolderName in conjuction with Utf7EncodeFolderNames set to false to preserve the original names of folders when passing them back to the server. This can be useful if the account contains some folder names encoded with the encoding different from UTF-7M. In this case, automatic re-encoding them into UTF-7M would cause problems.
See Also