Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Asn1Element.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
6{
10 public class Asn1Element : Asn1Values
11 {
12 private readonly Asn1Value element;
13
19 {
20 this.element = Element;
21 }
22
26 public Asn1Value Element => this.element;
27 }
28}
Abstract base class for values.
Definition: Asn1Value.cs:11
Abstract base class for sets of values
Definition: Asn1Values.cs:11
Asn1Element(Asn1Value Element)
Set of one element.
Definition: Asn1Element.cs:18