Sdílet prostřednictvím


JsonObject Konstruktory

Definice

Přetížení

JsonObject(Nullable<JsonNodeOptions>)

Inicializuje novou instanci JsonObject třídy, která je prázdná.

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

Inicializuje novou instanci JsonObject třídy, která obsahuje zadaný properties.

JsonObject(Nullable<JsonNodeOptions>)

Inicializuje novou instanci JsonObject třídy, která je prázdná.

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)

Parametry

options
Nullable<JsonNodeOptions>

Možnosti pro řízení chování

Platí pro

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

Inicializuje novou instanci JsonObject třídy, která obsahuje zadaný properties.

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)

Parametry

properties
IEnumerable<KeyValuePair<String,JsonNode>>

Vlastnosti, které se mají přidat.

options
Nullable<JsonNodeOptions>

Možnosti pro řízení chování

Platí pro