Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Asn1List.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
6{
10 public abstract class Asn1List : Asn1ComplexType
11 {
12 private readonly Asn1Node[] nodes;
13
20 public Asn1List(string Name, bool TypeDef, Asn1Node[] Nodes)
21 : base(Name, TypeDef)
22 {
23 this.nodes = Nodes;
24 }
25
29 public Asn1Node[] Nodes => this.nodes;
30 }
31}
Abstract base class for complex types.
string Name
Optional field or type name.
Abstract base class for list constructs.
Definition: Asn1List.cs:11
Asn1List(string Name, bool TypeDef, Asn1Node[] Nodes)
Abstract base class for list constructs.
Definition: Asn1List.cs:20
Base class for all ASN.1 nodes.
Definition: Asn1Node.cs:38