MessageParserConfigSetPlainOutputMode Method
Configures the parser to prepare the message for displaying in plain-text container (such as a TextBox control in WinForms application or the console).

Namespace: MailBee.Mime
Assembly: MailBee.NET.45 (in MailBee.NET.45.dll) Version: 10.0.45.502
Syntax
public void SetPlainOutputMode()
Remarks
This method configures the parser as follows:
  • PlainToHtmlMode=PlainToHtmlAutoConvert.Never;
  • HtmlToPlainMode=HtmlToPlainAutoConvert.IfNoPlain
  • HtmlToSimpleHtmlMode=HtmlToSimpleHtmlAutoConvert.Never;
  • HeadersAsHtml=false;
To specify an output message in HTML text mode, use SetPlainOutputMode property.
Examples
The example is available in MessageParserConfig class overview.
See Also