FolderRawName 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 RawName { 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.
Remarks
Unlike Name, RawName is not automatically decoded from UTF-7 Modified encoding. The developer can use RawName 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.
Note Note
This property returns a null reference (Nothing in Visual Basic) if IsValid is false.
See Also