JsonObject Konstruktoren

Definition

Überlädt

Name Beschreibung
JsonObject(Nullable<JsonNodeOptions>)

Initialisiert eine neue Instanz der Klasse, die JsonObject leer ist.

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

Initialisiert eine neue Instanz der JsonObject Klasse, die die angegebene propertiesKlasse enthält.

JsonObject(Nullable<JsonNodeOptions>)

Quelle:
JsonObject.cs
Quelle:
JsonObject.cs
Quelle:
JsonObject.cs
Quelle:
JsonObject.cs
Quelle:
JsonObject.cs
Quelle:
JsonObject.cs
Quelle:
JsonObject.cs

Initialisiert eine neue Instanz der Klasse, die JsonObject leer ist.

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>)

Quelle:
JsonObject.cs
Quelle:
JsonObject.cs
Quelle:
JsonObject.cs
Quelle:
JsonObject.cs
Quelle:
JsonObject.cs
Quelle:
JsonObject.cs
Quelle:
JsonObject.cs

Initialisiert eine neue Instanz der JsonObject Klasse, die die angegebene propertiesKlasse 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 hinzuzufügenden Eigenschaften.

options
Nullable<JsonNodeOptions>

Optionen zum Steuern des Verhaltens.

Gilt für: