Utf8JsonReader.TryGetByte(Byte) 方法

定义

尝试将源中的当前 JSON 令牌值分析为 Byte,并返回一个指示操作是否成功的值。

public:
 bool TryGetByte([Runtime::InteropServices::Out] System::Byte % value);
public bool TryGetByte (out byte value);
member this.TryGetByte : byte -> bool
Public Function TryGetByte (ByRef value As Byte) As Boolean

参数

value
Byte

此方法返回时,如果转换成功,则包含当前 JSON 编号等效的字节;如果转换失败,则包含 0。

返回

Boolean

如果可以将整个 UTF-8 编码令牌值成功解析为 Byte 值,则为 true;否则为 false

例外

JSON 令牌值不是 Number

适用于

另请参阅