MessageParserConfigCharsetConverter Property
Gets the object which controls charset conversions of string values of MailMessage properties when these values are returned to the application.

Namespace: MailBee.Mime
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public StringConversionConfig CharsetConverter { get; }

Property Value

Type: StringConversionConfig
A reference to the StringConversionConfig instance which provides access to the settings which controls charset conversions of string values of MailMessage properties when these values are returned to the application.
Remarks

This property is for advanced use.

By default, all returned strings are Unicode. This property allows the developer to make returned strings be represented in any charset. This may be useful for web applications which do not use UTF-8. WinForms and console applications (and UTF-8 web applications) do not need to use this property.

Note Note
MessageParserConfig object cannot be used on its own. To access its members, the developer should use MailMessage.Parser property.
See Also