EncodingFormat Enumeration

Contains values that specify how line breaks are handled during byte array formatting.

Definition

Namespace: SysadminsLV.Asn1Parser
Assembly: SysadminsLV.Asn1Parser (in SysadminsLV.Asn1Parser.dll) Version: 1.2.11
C#
[FlagsAttribute]
public enum EncodingFormat

Members

CRLF0 Appends a carriage return/line feed (CR/LF) pair (0x0D/0x0A) to the encoded string.
NOCRLF1,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.

NOCR2,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.

See Also