Asn1BuilderEncode Method
Gets ASN.1-encoded byte array that represents current state of builder wrapped using outer ASN.1 type and returns new
builder instance that contains current builder state.
Namespace: SysadminsLV.Asn1ParserAssembly: SysadminsLV.Asn1Parser (in SysadminsLV.Asn1Parser.dll) Version: 1.2.11
public Asn1Builder Encode(
byte outerTag = 48
)
Public Function Encode (
Optional outerTag As Byte = 48
) As Asn1Builder
public:
Asn1Builder^ Encode(
unsigned char outerTag = 48
)
member Encode :
?outerTag : byte
(* Defaults:
let _outerTag = defaultArg outerTag 48
*)
-> Asn1Builder
- outerTag Byte (Optional)
-
Outer type to wrap current state of builder. Outer type must not by the type that is used in primitive form only.
Default outer type is constructed SEQUENCE (0x30 or decimal 48).
Asn1Builder
A new instance of ASN.1 DER builder that contains the state of the current instance.