JsonObject 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
JsonObject(Nullable<JsonNodeOptions>) |
비어 있는 JsonObject 클래스의 새 인스턴스를 초기화합니다. |
JsonObject(IEnumerable<KeyValuePair<String,JsonNode>>, Nullable<JsonNodeOptions>) |
지정된 JsonObject 을 포함하는 |
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>
동작을 제어하는 옵션입니다.