Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Asn1Value.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
6{
10 public abstract class Asn1Value : Asn1Node
11 {
15 public Asn1Value()
16 {
17 }
18
22 public virtual string CSharpType
23 {
24 get
25 {
26 throw new NotImplementedException("Support for value type " +
27 this.GetType().FullName + " not implemented.");
28 }
29 }
30 }
31}
Base class for all ASN.1 nodes.
Definition: Asn1Node.cs:38
Abstract base class for values.
Definition: Asn1Value.cs:11
virtual string CSharpType
Corresponding C# type.
Definition: Asn1Value.cs:23
Asn1Value()
Abstract base class for values.
Definition: Asn1Value.cs:15