JsonObject コンストラクター

定義

オーバーロード

JsonObject(Nullable<JsonNodeOptions>)

JsonObject クラスの新しい空のインスタンスを初期化します。

JsonObject(IEnumerable<KeyValuePair<String,JsonNode>>, Nullable<JsonNodeOptions>)

指定した properties を格納している JsonObject クラスの新しいインスタンスを初期化します。

JsonObject(Nullable<JsonNodeOptions>)

ソース:
JsonObject.cs
ソース:
JsonObject.cs
ソース:
JsonObject.cs

JsonObject クラスの新しい空のインスタンスを初期化します。

public JsonObject (System.Text.Json.Nodes.JsonNodeOptions? options = default);
new System.Text.Json.Nodes.JsonObject : Nullable<System.Text.Json.Nodes.JsonNodeOptions> -> System.Text.Json.Nodes.JsonObject
Public Sub New (Optional options As Nullable(Of JsonNodeOptions) = Nothing)

パラメーター

options
Nullable<JsonNodeOptions>

動作を制御するためのオプション。

適用対象

JsonObject(IEnumerable<KeyValuePair<String,JsonNode>>, Nullable<JsonNodeOptions>)

ソース:
JsonObject.cs
ソース:
JsonObject.cs
ソース:
JsonObject.cs

指定した properties を格納している JsonObject クラスの新しいインスタンスを初期化します。

public JsonObject (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,System.Text.Json.Nodes.JsonNode?>> properties, System.Text.Json.Nodes.JsonNodeOptions? options = default);
new System.Text.Json.Nodes.JsonObject : seq<System.Collections.Generic.KeyValuePair<string, System.Text.Json.Nodes.JsonNode>> * Nullable<System.Text.Json.Nodes.JsonNodeOptions> -> System.Text.Json.Nodes.JsonObject
Public Sub New (properties As IEnumerable(Of KeyValuePair(Of String, JsonNode)), Optional options As Nullable(Of JsonNodeOptions) = Nothing)

パラメーター

properties
IEnumerable<KeyValuePair<String,JsonNode>>

追加するプロパティ。

options
Nullable<JsonNodeOptions>

動作を制御するためのオプション。

適用対象