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 RawName { get; }
Public ReadOnly Property RawName 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.
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 |
---|
This property returns a null reference (Nothing in Visual Basic) if IsValid is false. |
See Also