EncodingFormat Enumeration
Contains values that specify how line breaks are handled during byte array formatting.
Namespace: SysadminsLV.Asn1ParserAssembly: SysadminsLV.Asn1Parser (in SysadminsLV.Asn1Parser.dll) Version: 1.3.0+5c47da1850320381293fe03930b30c8078b8bf98
[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.
|
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.
|