Chapter 12. Generated OER Decode Methods

Table of Contents

Generated C# Method Format and Calling Parameters
Procedure for Calling C# OER Decode Methods
Reuse of C# Decoding Objects

For each ASN.1 production defined in the ASN.1 source file, a C# decode method may be generated. This method will decode an ASN.1 message into public member variables within the C# object.

As was the case for encode methods, a decode method is only generated if it is required to alter the default method in the base class. The C# model is built on inheritance from a set of common run-time base classes. These run-time classes contain default implementations of encode/decode methods that handle the encoding/decoding of the basic types.

For primitive types, a custom OER decode method is only generated if one or more of the following is true:

  1. The type contains a OER-visible constraint

  2. The generation of event handlers was specified

The exception to this rule is the ENUMERATED primitive type (or likewise, INTEGER type with a named number list) that will always cause a decode method to be generated.

Constructed types will always cause custom OER decode methods to be generated.