JsonObject 构造函数

定义

重载

JsonObject(Nullable<JsonNodeOptions>)

初始化为空的 JsonObject 类的新实例。

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

初始化包含指定 propertiesJsonObject 类的一个新实例。

JsonObject(Nullable<JsonNodeOptions>)

Source:
JsonObject.cs
Source:
JsonObject.cs
Source:
JsonObject.cs

初始化为空的 JsonObject 类的新实例。

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)

参数

options
Nullable<JsonNodeOptions>

用于控制行为的选项。

适用于

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

Source:
JsonObject.cs
Source:
JsonObject.cs
Source:
JsonObject.cs

初始化包含指定 propertiesJsonObject 类的一个新实例。

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)

参数

properties
IEnumerable<KeyValuePair<String,JsonNode>>

要添加的属性。

options
Nullable<JsonNodeOptions>

用于控制行为的选项。

适用于