TOC PREV NEXT INDEX


Data Member Generation



For each of the following ASN.1 CLASS fields, a corresponding member variable is generated in the C# class definition:

For a value field:

   public <TypeName> <FieldName>;
 

For a type field:

   public Asn1Type <FieldName>;
 

For an information object field:

   public <ClassName> <FieldName>;
 


For an information object set field:

   public <ClassName> <FieldName>;
 

Here,
<FieldName> is replaced with the name of the field.
<TypeName> is replaced with the generated runtime C# classname for the ASN.1 Type.
<ClassName> is replaced with the name of the information object class.

For a type field definition, an element with type Asn1Type is generated which is the base class for all types in the C# runtime namespace. A type field can hold a value of any type.


Objective Systems, Inc.

102 Pickering Way, Suite #506
Exton, Pennsylvania 19341
http://www.obj-sys.com
Phone: (484) 875-9841
Toll-free: (877) 307-6855 (US only)
Fax: (484) 875-9830
info@obj-sys.com
TOC PREV NEXT INDEX