Utf8JsonReader.TryGetDateTime(DateTime) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
嘗試從來源剖析目前的 JSON 權杖值作為 DateTime,並傳回指出作業是否成功的值。
public:
bool TryGetDateTime([Runtime::InteropServices::Out] DateTime % value);
public bool TryGetDateTime (out DateTime value);
member this.TryGetDateTime : DateTime -> bool
Public Function TryGetDateTime (ByRef value As DateTime) As Boolean
參數
傳回
如果整個 UTF-8 編碼權杖值可以成功剖析為 DateTime 值,則為 true
;否則為 false
。
例外狀況
JSON 權杖值不是 String。
備註
此方法只會建立 DateTime 符合 ISO 8601-1 擴充格式的 JSON 字串標記法, (請參閱 System.Text.Json) 中的 DateTime 和 DateTimeOffset 支援 。