Condividi tramite


AsnWriter.WriteInteger Metodo

Definizione

Overload

WriteInteger(Int64, Nullable<Asn1Tag>)

Scrive un valore Integer con un tag specificato.

WriteInteger(BigInteger, Nullable<Asn1Tag>)

Scrive un valore Integer con un tag specificato.

WriteInteger(ReadOnlySpan<Byte>, Nullable<Asn1Tag>)

Scrive un valore Integer con un tag specificato.

WriteInteger(UInt64, Nullable<Asn1Tag>)

Scrive un valore Integer con un tag specificato.

WriteInteger(Int64, Nullable<Asn1Tag>)

Origine:
AsnWriter.Integer.cs
Origine:
AsnWriter.Integer.cs
Origine:
AsnWriter.Integer.cs

Scrive un valore Integer con un tag specificato.

public void WriteInteger (long value, System.Formats.Asn1.Asn1Tag? tag = default);
member this.WriteInteger : int64 * Nullable<System.Formats.Asn1.Asn1Tag> -> unit
Public Sub WriteInteger (value As Long, Optional tag As Nullable(Of Asn1Tag) = Nothing)

Parametri

value
Int64

Valore da scrivere.

tag
Nullable<Asn1Tag>

Tag da scrivere oppure null per indicare il tag predefinito (Universal 2).

Eccezioni

tag.TagClass è Universal, ma tag.TagValue non è corretto per il metodo .

Si applica a

WriteInteger(BigInteger, Nullable<Asn1Tag>)

Origine:
AsnWriter.Integer.cs
Origine:
AsnWriter.Integer.cs
Origine:
AsnWriter.Integer.cs

Scrive un valore Integer con un tag specificato.

public void WriteInteger (System.Numerics.BigInteger value, System.Formats.Asn1.Asn1Tag? tag = default);
member this.WriteInteger : System.Numerics.BigInteger * Nullable<System.Formats.Asn1.Asn1Tag> -> unit
Public Sub WriteInteger (value As BigInteger, Optional tag As Nullable(Of Asn1Tag) = Nothing)

Parametri

value
BigInteger

Valore da scrivere.

tag
Nullable<Asn1Tag>

Tag da scrivere oppure null per indicare il tag predefinito (Universal 2).

Eccezioni

tag.TagClass è Universal, ma tag.TagValue non è corretto per il metodo .

Si applica a

WriteInteger(ReadOnlySpan<Byte>, Nullable<Asn1Tag>)

Origine:
AsnWriter.Integer.cs
Origine:
AsnWriter.Integer.cs
Origine:
AsnWriter.Integer.cs

Scrive un valore Integer con un tag specificato.

public void WriteInteger (ReadOnlySpan<byte> value, System.Formats.Asn1.Asn1Tag? tag = default);
member this.WriteInteger : ReadOnlySpan<byte> * Nullable<System.Formats.Asn1.Asn1Tag> -> unit
Public Sub WriteInteger (value As ReadOnlySpan(Of Byte), Optional tag As Nullable(Of Asn1Tag) = Nothing)

Parametri

value
ReadOnlySpan<Byte>

Valore Integer da scrivere nell'ordine dei byte big-endian con segno.

tag
Nullable<Asn1Tag>

Tag da scrivere oppure null per indicare il tag predefinito (Universal 2).

Eccezioni

tag.TagClass è Universal, ma tag.TagValue non è corretto per il metodo .

i 9 bit più significativi sono tutti impostati. oppure i 9 bit più significativi sono tutti non impostati.

Si applica a

WriteInteger(UInt64, Nullable<Asn1Tag>)

Origine:
AsnWriter.Integer.cs
Origine:
AsnWriter.Integer.cs
Origine:
AsnWriter.Integer.cs

Importante

Questa API non è conforme a CLS.

Scrive un valore Integer con un tag specificato.

[System.CLSCompliant(false)]
public void WriteInteger (ulong value, System.Formats.Asn1.Asn1Tag? tag = default);
[<System.CLSCompliant(false)>]
member this.WriteInteger : uint64 * Nullable<System.Formats.Asn1.Asn1Tag> -> unit
Public Sub WriteInteger (value As ULong, Optional tag As Nullable(Of Asn1Tag) = Nothing)

Parametri

value
UInt64

Valore da scrivere.

tag
Nullable<Asn1Tag>

Tag da scrivere oppure null per indicare il tag predefinito (Universal 2).

Attributi

Eccezioni

tag.TagClass è Universal, ma tag.TagValue non è corretto per il metodo .

Si applica a