Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Asn1Interval.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
6{
10 public class Asn1Interval : Asn1Values
11 {
12 private readonly Asn1Value from;
13 private readonly Asn1Value to;
14
21 {
22 this.from = From;
23 this.to = To;
24 }
25
29 public Asn1Value From => this.from;
30
34 public Asn1Value To => this.to;
35 }
36}
Abstract base class for values.
Definition: Asn1Value.cs:11
Abstract base class for sets of values
Definition: Asn1Values.cs:11
Asn1Interval(Asn1Value From, Asn1Value To)
Interval of elements.
Definition: Asn1Interval.cs:20