Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Asn1SetOf.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
6{
10 public class Asn1SetOf : Asn1Type
11 {
12 private readonly Asn1Values size;
13 private readonly string typeName;
14
21 : base()
22 {
23 this.size = Size;
24 this.typeName = TypeName;
25 }
26
30 public Asn1Values Size => this.size;
31
35 public string TypeName => this.typeName;
36 }
37}
Represents a ASN.1 SET OF construct.
Definition: Asn1SetOf.cs:11
Asn1SetOf(Asn1Values Size, string TypeName)
Represents a ASN.1 SET OF construct.
Definition: Asn1SetOf.cs:20
Abstract base class for ASN.1 types.
Definition: Asn1Type.cs:13
Abstract base class for sets of values
Definition: Asn1Values.cs:11