|
ASN1C C# Runtime Library
7.8
|
Public Member Functions | |
| void | Contents (byte[] data) |
| void | EndElement (Asn1Tag tag) |
| void | StartElement (Asn1Tag tag, int len, byte[] tagLenBytes) |
| void Contents | ( | byte [] | data | ) |
The contents callback method is invoked when the contents of a primitive data element are parsed.
| data | Array containing encoded contents bytes. |
Implemented in Asn1BerMessageDumpHandler.
Referenced by Asn1BerDecodeBuffer.Parse().
| void EndElement | ( | Asn1Tag | tag | ) |
The endElement callback method is invoked when the end of a tagged element is parsed.
| tag | Parsed tag value. |
Implemented in Asn1BerMessageDumpHandler.
Referenced by Asn1BerDecodeBuffer.Parse().
| void StartElement | ( | Asn1Tag | tag, |
| int | len, | ||
| byte [] | tagLenBytes | ||
| ) |
The StartElement callback method is invoked when the start of any tagged element is parsed.
| tag | Parsed tag value. |
| len | Parsed length value |
| tagLenBytes | Array containing the encoded bytes that make up the tag/length sequence. |
Implemented in Asn1BerMessageDumpHandler.
Referenced by Asn1BerDecodeBuffer.Parse().