JsonObject Oluşturucular
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Aşırı Yüklemeler
| Name | Description |
|---|---|
| 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 |
JsonObject(Nullable<JsonNodeOptions>)
- Kaynak:
- JsonObject.cs
- Kaynak:
- JsonObject.cs
- 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
- 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.