[FlagsAttribute]
public enum EncodingFormat
<FlagsAttribute>
Public Enumeration EncodingFormat
[FlagsAttribute]
public enum class EncodingFormat
[<FlagsAttribute>]
type EncodingFormat
CRLF | 0 | Appends a carriage return/line feed (CR/LF) pair (0x0D/0x0A) to the encoded string. |
NOCRLF | 1,073,741,824 |
Do not append any new line characters to the encoded string. The default behavior is to use a carriage return/line
feed (CR/LF) pair (0x0D/0x0A) to represent a new line.
Windows Server 2003 and Windows XP: This value is not supported. |
NOCR | 2,147,483,648 | Only use the line feed (LF) character (0x0A) for a new line. The default behavior is to use a CR/LF pair (0x0D/0x0A) to represent a new line. |