JsonObject Constructors

Definitie

Overloads

Name Description
JsonObject(Nullable<JsonNodeOptions>)

Initialiseert een nieuw exemplaar van de JsonObject klasse die leeg is.

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

Initialiseert een nieuw exemplaar van de JsonObject klasse die de opgegeven propertiesbevat.

JsonObject(Nullable<JsonNodeOptions>)

Bron:
JsonObject.cs
Bron:
JsonObject.cs
Bron:
JsonObject.cs
Bron:
JsonObject.cs
Bron:
JsonObject.cs
Bron:
JsonObject.cs
Bron:
JsonObject.cs

Initialiseert een nieuw exemplaar van de JsonObject klasse die leeg is.

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)

Parameters

options
Nullable<JsonNodeOptions>

Opties voor het beheren van het gedrag.

Van toepassing op

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

Bron:
JsonObject.cs
Bron:
JsonObject.cs
Bron:
JsonObject.cs
Bron:
JsonObject.cs
Bron:
JsonObject.cs
Bron:
JsonObject.cs
Bron:
JsonObject.cs

Initialiseert een nieuw exemplaar van de JsonObject klasse die de opgegeven propertiesbevat.

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)

Parameters

properties
IEnumerable<KeyValuePair<String,JsonNode>>

De eigenschappen die moeten worden toegevoegd.

options
Nullable<JsonNodeOptions>

Opties voor het beheren van het gedrag.

Van toepassing op