JsonElement.TryGetDateTimeOffset(DateTimeOffset) 方法

定義

嘗試以 DateTimeOffset 表示目前的 JSON 字串。

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 轉換失敗,則為 。

傳回

若字串可以表示為 DateTimeOffset,則為 true;否則為 false

例外狀況

JsonDocument 已經過處置。

備註

這個方法只會建立符合 ISO 8601-1 擴充格式的 JSON 字串的 DateTimeOffset 標記法, (請參閱 System.Text.Json) 中的 DateTime 和 DateTimeOffset 支援

適用於