Hunny Software Library Reference

QuotedPrintableEncoderW.SuppressFinalNewline Property

Gets or sets the option to suppress a final newline in the output.

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

Property Value

If true, the encoder suppresses a final newline; if false, the encoder always adds a final newline.

Remarks

If this option is true, then the encoder does not put a final newline (CR LF, or LF) at the end of the encoded output, unless the input ends with a hard line break. If this option is false, then the encoder always adds a newline to the end of the encoded output. If the option is false and the input does not end with a hard line break, then the encoder adds a soft line break (that is, "=\r\n" or "=\n") at the end of the encoded output.

The default value is false (meaning that the encoder always adds a final newline).

See Also

QuotedPrintableEncoderW Class | Hunny.Mime Namespace