Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Asn1ValueRestriction.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
6{
10 public abstract class Asn1ValueRestriction : Asn1Restriction
11 {
12 private readonly Asn1Value value;
13
19 {
20 this.value = Value;
21 }
22
26 public Asn1Node Value => this.value;
27 }
28}
Base class for all ASN.1 nodes.
Definition: Asn1Node.cs:38
Abstract base class for ASN.1 restrictions.
Abstract base class for values.
Definition: Asn1Value.cs:11
Abstract base class for value-based restrictions
Asn1ValueRestriction(Asn1Value Value)
Abstract base class for set-based restrictions