Utf8JsonWriter 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
| 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에 따라 구조적으로 유효한지 확인합니다.
예외
bufferWriter은 null입니다.
적용 대상
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에 따라 구조적으로 유효한지 확인합니다.
예외
utf8Json은 null입니다.