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