共用方式為


JsonElement.TryGetUInt16(UInt16) 方法

定義

重要

此 API 不符合 CLS 規範。

嘗試以 UInt16 表示目前的 JSON 數字。

public:
 bool TryGetUInt16([Runtime::InteropServices::Out] System::UInt16 % value);
[System.CLSCompliant(false)]
public bool TryGetUInt16 (out ushort value);
[<System.CLSCompliant(false)>]
member this.TryGetUInt16 : uint16 -> bool
Public Function TryGetUInt16 (ByRef value As UShort) As Boolean

參數

value
UInt16

當這個方法傳回時,如果轉換成功,則包含與目前 JSON 數位相等的不帶正負號的 16 位整數值,如果轉換失敗則為 0。

傳回

Boolean

若數字可以表示為 UInt16,則為 true;否則為 false

屬性

例外狀況

JsonDocument 已經過處置。

備註

這個方法不會剖析 JSON 字串值的內容。

適用於