Asn1Tag Konstruktory

Definicja

Przeciążenia

Asn1Tag(UniversalTagNumber, Boolean)

Utwórz tag Asn1Tag dla tagu z klasy UNIVERSAL.

Asn1Tag(TagClass, Int32, Boolean)

Utwórz element Asn1Tag dla określonej wartości w określonej klasie tagów.

Asn1Tag(UniversalTagNumber, Boolean)

Utwórz tag Asn1Tag dla tagu z klasy UNIVERSAL.

public Asn1Tag (System.Formats.Asn1.UniversalTagNumber universalTagNumber, bool isConstructed = false);
new System.Formats.Asn1.Asn1Tag : System.Formats.Asn1.UniversalTagNumber * bool -> System.Formats.Asn1.Asn1Tag
Public Sub New (universalTagNumber As UniversalTagNumber, Optional isConstructed As Boolean = false)

Parametry

universalTagNumber
UniversalTagNumber

Jedna z wartości wyliczenia, która określa typ semantyczny dla tego tagu.

isConstructed
Boolean

true dla skonstruowanego tagu false dla tagu pierwotnego.

Wyjątki

universalTagNumber nie jest znaną wartością.

Dotyczy

Asn1Tag(TagClass, Int32, Boolean)

Utwórz element Asn1Tag dla określonej wartości w określonej klasie tagów.

public Asn1Tag (System.Formats.Asn1.TagClass tagClass, int tagValue, bool isConstructed = false);
new System.Formats.Asn1.Asn1Tag : System.Formats.Asn1.TagClass * int * bool -> System.Formats.Asn1.Asn1Tag
Public Sub New (tagClass As TagClass, tagValue As Integer, Optional isConstructed As Boolean = false)

Parametry

tagClass
TagClass

Klasa tagu dla tego tagu.

tagValue
Int32

Wartość liczbowa dla tego tagu.

isConstructed
Boolean

true dla skonstruowanego tagu false dla tagu pierwotnego.

Wyjątki

tagClass nie jest znaną wartością. -or- tagValue jest ujemny.

Uwagi

Ten konstruktor umożliwia tworzenie niezdefiniowanych tagów klas UNIVERSAL.

Dotyczy