JsonObject Oluşturucular

Tanım

Aşırı Yüklemeler

JsonObject(Nullable<JsonNodeOptions>)

Boş olan sınıfın JsonObject yeni bir örneğini başlatır.

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

Belirtilen propertiesöğesini içeren sınıfının yeni bir örneğini JsonObject başlatır.

JsonObject(Nullable<JsonNodeOptions>)

Kaynak:
JsonObject.cs
Kaynak:
JsonObject.cs
Kaynak:
JsonObject.cs

Boş olan sınıfın JsonObject yeni bir örneğini başlatır.

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)

Parametreler

options
Nullable<JsonNodeOptions>

Davranışı denetleme seçenekleri.

Şunlara uygulanır

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

Kaynak:
JsonObject.cs
Kaynak:
JsonObject.cs
Kaynak:
JsonObject.cs

Belirtilen propertiesöğesini içeren sınıfının yeni bir örneğini JsonObject başlatır.

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)

Parametreler

properties
IEnumerable<KeyValuePair<String,JsonNode>>

Eklenecek özellikler.

options
Nullable<JsonNodeOptions>

Davranışı denetleme seçenekleri.

Şunlara uygulanır