AsnWriter.WriteInteger メソッド

定義

オーバーロード

WriteInteger(Int64, Nullable<Asn1Tag>)

指定したタグを使用して整数値を書き込みます。

WriteInteger(BigInteger, Nullable<Asn1Tag>)

指定したタグを使用して整数値を書き込みます。

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

指定したタグを使用して整数値を書き込みます。

WriteInteger(UInt64, Nullable<Asn1Tag>)

指定したタグを使用して整数値を書き込みます。

WriteInteger(Int64, Nullable<Asn1Tag>)

ソース:
AsnWriter.Integer.cs
ソース:
AsnWriter.Integer.cs
ソース:
AsnWriter.Integer.cs

指定したタグを使用して整数値を書き込みます。

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)

パラメーター

value
Int64

書き込む値。

tag
Nullable<Asn1Tag>

書き込むタグ、または既定のタグ (Universal 2) の場合は null

例外

tagTagClassUniversalですがtagTagValue、 メソッドでは 正しくありません。

適用対象

WriteInteger(BigInteger, Nullable<Asn1Tag>)

ソース:
AsnWriter.Integer.cs
ソース:
AsnWriter.Integer.cs
ソース:
AsnWriter.Integer.cs

指定したタグを使用して整数値を書き込みます。

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)

パラメーター

value
BigInteger

書き込む値。

tag
Nullable<Asn1Tag>

書き込むタグ、または既定のタグ (Universal 2) の場合は null

例外

tagTagClassUniversalですがtagTagValue、 メソッドでは 正しくありません。

適用対象

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

ソース:
AsnWriter.Integer.cs
ソース:
AsnWriter.Integer.cs
ソース:
AsnWriter.Integer.cs

指定したタグを使用して整数値を書き込みます。

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)

パラメーター

value
ReadOnlySpan<Byte>

符号付きビッグエンディアン バイト順で書き込まれる整数値。

tag
Nullable<Asn1Tag>

書き込むタグ、または既定のタグ (Universal 2) の場合は null

例外

tagTagClassUniversalですがtagTagValue、 メソッドでは 正しくありません。

最上位の 9 ビットがすべて設定されています。 -または- 最上位の 9 ビットがすべて未設定です。

適用対象

WriteInteger(UInt64, Nullable<Asn1Tag>)

ソース:
AsnWriter.Integer.cs
ソース:
AsnWriter.Integer.cs
ソース:
AsnWriter.Integer.cs

重要

この API は CLS 準拠ではありません。

指定したタグを使用して整数値を書き込みます。

[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)

パラメーター

value
UInt64

書き込む値。

tag
Nullable<Asn1Tag>

書き込むタグ、または既定のタグ (Universal 2) の場合は null

属性

例外

tagTagClassUniversalですがtagTagValue、 メソッドでは 正しくありません。

適用対象