JsonObject Konstruktory

Definicja

Przeciążenia

JsonObject(Nullable<JsonNodeOptions>)

Inicjuje JsonObject nowe wystąpienie klasy, która jest pusta.

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

Inicjuje JsonObject nowe wystąpienie klasy zawierającej określony propertieselement .

JsonObject(Nullable<JsonNodeOptions>)

Źródło:
JsonObject.cs
Źródło:
JsonObject.cs
Źródło:
JsonObject.cs

Inicjuje JsonObject nowe wystąpienie klasy, która jest pusta.

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>

Opcje kontrolowania zachowania.

Dotyczy

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

Źródło:
JsonObject.cs
Źródło:
JsonObject.cs
Źródło:
JsonObject.cs

Inicjuje JsonObject nowe wystąpienie klasy zawierającej określony propertieselement .

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

Właściwości do dodania.

options
Nullable<JsonNodeOptions>

Opcje kontrolowania zachowania.

Dotyczy