Utf8JsonWriter 생성자

정의

오버로드

Name Description
Utf8JsonWriter(IBufferWriter<Byte>, JsonWriterOptions)

지정된 IBufferWriter<T> 클래스를 사용하여 클래스의 Utf8JsonWriter 새 인스턴스를 초기화하여 출력 및 사용자 지정 옵션을 작성합니다.

Utf8JsonWriter(Stream, JsonWriterOptions)

지정된 스트림을 사용하여 클래스의 Utf8JsonWriter 새 인스턴스를 초기화하여 출력 및 사용자 지정 옵션을 작성합니다.

Utf8JsonWriter(IBufferWriter<Byte>, JsonWriterOptions)

Source:
Utf8JsonWriter.cs
Source:
Utf8JsonWriter.cs
Source:
Utf8JsonWriter.cs
Source:
Utf8JsonWriter.cs
Source:
Utf8JsonWriter.cs
Source:
Utf8JsonWriter.cs
Source:
Utf8JsonWriter.cs

지정된 IBufferWriter<T> 클래스를 사용하여 클래스의 Utf8JsonWriter 새 인스턴스를 초기화하여 출력 및 사용자 지정 옵션을 작성합니다.

public Utf8JsonWriter(System.Buffers.IBufferWriter<byte> bufferWriter, System.Text.Json.JsonWriterOptions options = default);
new System.Text.Json.Utf8JsonWriter : System.Buffers.IBufferWriter<byte> * System.Text.Json.JsonWriterOptions -> System.Text.Json.Utf8JsonWriter
Public Sub New (bufferWriter As IBufferWriter(Of Byte), Optional options As JsonWriterOptions = Nothing)

매개 변수

bufferWriter
IBufferWriter<Byte>

JSON 텍스트를 작성하기 위한 대상입니다.

options
JsonWriterOptions

의 사용자 지정된 동작을 정의합니다 Utf8JsonWriter. 기본적으로 최소화된 JSON(추가 공백 없음)을 작성하고 작성 중인 JSON이 JSON RFC에 따라 구조적으로 유효한지 확인합니다.

예외

bufferWriternull입니다.

적용 대상

Utf8JsonWriter(Stream, JsonWriterOptions)

Source:
Utf8JsonWriter.cs
Source:
Utf8JsonWriter.cs
Source:
Utf8JsonWriter.cs
Source:
Utf8JsonWriter.cs
Source:
Utf8JsonWriter.cs
Source:
Utf8JsonWriter.cs
Source:
Utf8JsonWriter.cs

지정된 스트림을 사용하여 클래스의 Utf8JsonWriter 새 인스턴스를 초기화하여 출력 및 사용자 지정 옵션을 작성합니다.

public Utf8JsonWriter(System.IO.Stream utf8Json, System.Text.Json.JsonWriterOptions options = default);
new System.Text.Json.Utf8JsonWriter : System.IO.Stream * System.Text.Json.JsonWriterOptions -> System.Text.Json.Utf8JsonWriter
Public Sub New (utf8Json As Stream, Optional options As JsonWriterOptions = Nothing)

매개 변수

utf8Json
Stream

JSON 텍스트를 작성하기 위한 대상입니다.

options
JsonWriterOptions

의 사용자 지정된 동작을 정의합니다 Utf8JsonWriter. 기본적으로 최소화된 JSON(추가 공백 없음)을 작성하고 작성 중인 JSON이 JSON RFC에 따라 구조적으로 유효한지 확인합니다.

예외

utf8Jsonnull입니다.

적용 대상