Hunny Software Library Reference

QuotedPrintableDecoder.OutputCrLf Property

Gets or sets the CRLF end-of-line characters option.

[Visual Basic]
Public Property OutputCrLf As Boolean
[C#]
public bool OutputCrLf {get; set;}

Property Value

A true value causes the decoder to output CR LF for the end-of-line characters; false causes it to output LF.

Remarks

If this option is true, then the decoder uses CR LF as the end-of-line characters for hard line breaks in the decoded output. If this option is false, then the decoder uses LF alone.

Normally, you do not need to set this option, because the decoder performs correctly by default. When your program starts, and before you create any threads, set TextUtil.EOL to either TextUtil.LF_EOL or TextUtil.CRLF_EOL. (The default is TextUtil.LF_EOL.) Then, the quoted-printable decoder sets the value of this option based on the value of TextUtil.EOL.

See Also

QuotedPrintableDecoder Class | Hunny.Mime Namespace