Freigeben über


JsonObject Konstruktoren

Definition

Überlädt

JsonObject(Nullable<JsonNodeOptions>)

Initialisiert eine neue, leere Instanz der JsonObject-Klasse.

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

Initialisiert eine neue Instanz der JsonObject-Klasse, die den angegebenen properties enthält.

JsonObject(Nullable<JsonNodeOptions>)

Initialisiert eine neue, leere Instanz der JsonObject-Klasse.

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)

Parameter

options
Nullable<JsonNodeOptions>

Optionen zum Steuern des Verhaltens.

Gilt für

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

Initialisiert eine neue Instanz der JsonObject-Klasse, die den angegebenen properties enthält.

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)

Parameter

properties
IEnumerable<KeyValuePair<String,JsonNode>>

Die zu hinzufügenden Eigenschaften.

options
Nullable<JsonNodeOptions>

Optionen zum Steuern des Verhaltens.

Gilt für