FolderStatusRawFolderName Property |
Gets the full name of the folder as was returned by the server including parent folder names if any.
Namespace: MailBee.ImapMailAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public string RawFolderName { get; }
Public ReadOnly Property RawFolderName As String
Get
Property Value
Type:
StringThe 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