Utf8JsonWriter.WriteNumberValue 方法

定义

重载

WriteNumberValue(UInt64)

编写 UInt64 值(写为 JSON 数字)作为 JSON 数组的元素。

WriteNumberValue(UInt32)

编写 UInt32 值(写为 JSON 数字)作为 JSON 数组的元素。

WriteNumberValue(Single)

编写 Single 值(写为 JSON 数字)作为 JSON 数组的元素。

WriteNumberValue(Int64)

编写 Int64 值(写为 JSON 数字)作为 JSON 数组的元素。

WriteNumberValue(Int32)

编写 Int32 值(写为 JSON 数字)作为 JSON 数组的元素。

WriteNumberValue(Double)

编写 Double 值(写为 JSON 数字)作为 JSON 数组的元素。

WriteNumberValue(Decimal)

编写 Decimal 值(写为 JSON 数字)作为 JSON 数组的元素。

WriteNumberValue(UInt64)

Source:
Utf8JsonWriter.WriteValues.UnsignedNumber.cs
Source:
Utf8JsonWriter.WriteValues.UnsignedNumber.cs
Source:
Utf8JsonWriter.WriteValues.UnsignedNumber.cs

重要

此 API 不符合 CLS。

编写 UInt64 值(写为 JSON 数字)作为 JSON 数组的元素。

public:
 void WriteNumberValue(System::UInt64 value);
[System.CLSCompliant(false)]
public void WriteNumberValue (ulong value);
[<System.CLSCompliant(false)>]
member this.WriteNumberValue : uint64 -> unit
Public Sub WriteNumberValue (value As ULong)

参数

value
UInt64

要以 JSON 数字形式作为 JSON 数组的元素编写的值。

属性

例外

系统已启用验证,该操作将导致编写无效的 JSON。

注解

此方法使用默认StandardFormat (即“G”) 写入UInt64值。 例如,32767。

适用于

WriteNumberValue(UInt32)

Source:
Utf8JsonWriter.WriteValues.UnsignedNumber.cs
Source:
Utf8JsonWriter.WriteValues.UnsignedNumber.cs
Source:
Utf8JsonWriter.WriteValues.UnsignedNumber.cs

重要

此 API 不符合 CLS。

编写 UInt32 值(写为 JSON 数字)作为 JSON 数组的元素。

public:
 void WriteNumberValue(System::UInt32 value);
[System.CLSCompliant(false)]
public void WriteNumberValue (uint value);
[<System.CLSCompliant(false)>]
member this.WriteNumberValue : uint32 -> unit
Public Sub WriteNumberValue (value As UInteger)

参数

value
UInt32

要以 JSON 数字形式作为 JSON 数组的元素编写的值。

属性

例外

系统已启用验证,该操作将导致编写无效的 JSON。

注解

此方法使用默认StandardFormat (即“G”) 写入UInt32值。 例如,32767。

适用于

WriteNumberValue(Single)

Source:
Utf8JsonWriter.WriteValues.Float.cs
Source:
Utf8JsonWriter.WriteValues.Float.cs
Source:
Utf8JsonWriter.WriteValues.Float.cs

编写 Single 值(写为 JSON 数字)作为 JSON 数组的元素。

public:
 void WriteNumberValue(float value);
public void WriteNumberValue (float value);
member this.WriteNumberValue : single -> unit
Public Sub WriteNumberValue (value As Single)

参数

value
Single

要以 JSON 数字形式作为 JSON 数组的元素编写的值。

例外

系统已启用验证,该操作将导致编写无效的 JSON。

注解

此方法使用默认StandardFormat ((即 .NET Core 3.0 或更高版本上的“G”) )写入Single值。 在任何其他框架上使用“G9”。

适用于

WriteNumberValue(Int64)

Source:
Utf8JsonWriter.WriteValues.SignedNumber.cs
Source:
Utf8JsonWriter.WriteValues.SignedNumber.cs
Source:
Utf8JsonWriter.WriteValues.SignedNumber.cs

编写 Int64 值(写为 JSON 数字)作为 JSON 数组的元素。

public:
 void WriteNumberValue(long value);
public void WriteNumberValue (long value);
member this.WriteNumberValue : int64 -> unit
Public Sub WriteNumberValue (value As Long)

参数

value
Int64

要以 JSON 数字形式作为 JSON 数组的元素编写的值。

例外

系统已启用验证,该操作将导致编写无效的 JSON。

注解

此方法使用默认StandardFormat (即“G”) 写入Int64值。 例如,32767。

适用于

WriteNumberValue(Int32)

Source:
Utf8JsonWriter.WriteValues.SignedNumber.cs
Source:
Utf8JsonWriter.WriteValues.SignedNumber.cs
Source:
Utf8JsonWriter.WriteValues.SignedNumber.cs

编写 Int32 值(写为 JSON 数字)作为 JSON 数组的元素。

public:
 void WriteNumberValue(int value);
public void WriteNumberValue (int value);
member this.WriteNumberValue : int -> unit
Public Sub WriteNumberValue (value As Integer)

参数

value
Int32

要以 JSON 数字形式作为 JSON 数组的元素编写的值。

例外

系统已启用验证,该操作将导致编写无效的 JSON。

注解

此方法使用默认StandardFormat (即“G”) 写入Int32值。 例如,32767。

适用于

WriteNumberValue(Double)

Source:
Utf8JsonWriter.WriteValues.Double.cs
Source:
Utf8JsonWriter.WriteValues.Double.cs
Source:
Utf8JsonWriter.WriteValues.Double.cs

编写 Double 值(写为 JSON 数字)作为 JSON 数组的元素。

public:
 void WriteNumberValue(double value);
public void WriteNumberValue (double value);
member this.WriteNumberValue : double -> unit
Public Sub WriteNumberValue (value As Double)

参数

value
Double

要以 JSON 数字形式作为 JSON 数组的元素编写的值。

例外

系统已启用验证,该操作将导致编写无效的 JSON。

注解

此方法使用默认StandardFormat ((即 .NET Core 3.0 或更高版本上的“G”) )写入Double值。 在任何其他框架上使用“G17”。

适用于

WriteNumberValue(Decimal)

Source:
Utf8JsonWriter.WriteValues.Decimal.cs
Source:
Utf8JsonWriter.WriteValues.Decimal.cs
Source:
Utf8JsonWriter.WriteValues.Decimal.cs

编写 Decimal 值(写为 JSON 数字)作为 JSON 数组的元素。

public:
 void WriteNumberValue(System::Decimal value);
public void WriteNumberValue (decimal value);
member this.WriteNumberValue : decimal -> unit
Public Sub WriteNumberValue (value As Decimal)

参数

value
Decimal

要以 JSON 数字形式作为 JSON 数组的元素编写的值。

例外

系统已启用验证,该操作将导致编写无效的 JSON。

注解

此方法使用默认StandardFormat (即“G”) 写入Decimal值。

适用于