JsonElement.TryGetDateTime(DateTime) 方法

定義

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

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

參數

value
DateTime

當這個方法傳回時,如果轉換成功,則包含相當於目前 JSON 字串的日期和時間值,如果 MinValue 轉換失敗,則為 。

傳回

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

例外狀況

JsonDocument 已經過處置。

備註

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

適用於