다음을 통해 공유


JsonObject 생성자

정의

오버로드

JsonObject(Nullable<JsonNodeOptions>)

비어 있는 JsonObject 클래스의 새 인스턴스를 초기화합니다.

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

지정된 JsonObject 을 포함하는 properties클래스의 새 인스턴스를 초기화합니다.

JsonObject(Nullable<JsonNodeOptions>)

비어 있는 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>)

지정된 JsonObject 을 포함하는 properties클래스의 새 인스턴스를 초기화합니다.

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>

동작을 제어하는 옵션입니다.

적용 대상