Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Asn1List.cs
1
using
System;
2
using
System.Collections.Generic;
3
using
System.Text;
4
5
namespace
Waher.Content.Asn1.Model
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
}
Waher.Content.Asn1.Model.Asn1ComplexType
Abstract base class for complex types.
Definition:
Asn1ComplexType.cs:11
Waher.Content.Asn1.Model.Asn1ComplexType.Name
string Name
Optional field or type name.
Definition:
Asn1ComplexType.cs:30
Waher.Content.Asn1.Model.Asn1List
Abstract base class for list constructs.
Definition:
Asn1List.cs:11
Waher.Content.Asn1.Model.Asn1List.Nodes
Asn1Node[] Nodes
Nodes
Definition:
Asn1List.cs:29
Waher.Content.Asn1.Model.Asn1List.Asn1List
Asn1List(string Name, bool TypeDef, Asn1Node[] Nodes)
Abstract base class for list constructs.
Definition:
Asn1List.cs:20
Waher.Content.Asn1.Model.Asn1Node
Base class for all ASN.1 nodes.
Definition:
Asn1Node.cs:38
Waher.Content.Asn1.Model
Definition:
Asn1Choice.cs:8
IoTGateway
Content
Waher.Content.Asn1
Model
Asn1List.cs
Generated by
1.9.5