Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Asn1Duration.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4using System.Threading.Tasks;
5
7{
11 public class Asn1Duration : Asn1Type
12 {
16 public Asn1Duration()
17 : base()
18 {
19 }
20
28 public override Task ExportCSharp(StringBuilder Output, CSharpExportState State, int Indent, CSharpExportPass Pass)
29 {
30 if (Pass == CSharpExportPass.Explicit)
31 Output.Append("Duration");
32
33 return Task.CompletedTask;
34 }
35 }
36}
Abstract base class for ASN.1 types.
Definition: Asn1Type.cs:13
override Task ExportCSharp(StringBuilder Output, CSharpExportState State, int Indent, CSharpExportPass Pass)
Exports to C#
Definition: Asn1Duration.cs:28
CSharpExportPass
Defines different C# export passes.
Definition: Asn1Node.cs:12