Utf8JsonWriter.Reset 메서드

정의

오버로드

Name Description
Reset(Stream, JsonWriterOptions)
Reset(IBufferWriter<Byte>, JsonWriterOptions)
Reset()

다시 사용할 수 있도록 이 인스턴스의 내부 상태를 다시 설정합니다.

Reset(IBufferWriter<Byte>)

새 인스턴스와 함께 다시 사용할 수 있도록 이 인스턴스의 IBufferWriter<T>내부 상태를 다시 설정합니다.

Reset(Stream)

새 인스턴스와 함께 다시 사용할 수 있도록 이 인스턴스의 Stream내부 상태를 다시 설정합니다.

Reset(Stream, JsonWriterOptions)

Source:
Utf8JsonWriter.cs
public:
 void Reset(System::IO::Stream ^ utf8Json, System::Text::Json::JsonWriterOptions options);
public void Reset(System.IO.Stream utf8Json, System.Text.Json.JsonWriterOptions options);
member this.Reset : System.IO.Stream * System.Text.Json.JsonWriterOptions -> unit
Public Sub Reset (utf8Json As Stream, options As JsonWriterOptions)

매개 변수

utf8Json
Stream

적용 대상

Reset(IBufferWriter<Byte>, JsonWriterOptions)

Source:
Utf8JsonWriter.cs
public:
 void Reset(System::Buffers::IBufferWriter<System::Byte> ^ bufferWriter, System::Text::Json::JsonWriterOptions options);
public void Reset(System.Buffers.IBufferWriter<byte> bufferWriter, System.Text.Json.JsonWriterOptions options);
member this.Reset : System.Buffers.IBufferWriter<byte> * System.Text.Json.JsonWriterOptions -> unit
Public Sub Reset (bufferWriter As IBufferWriter(Of Byte), options As JsonWriterOptions)

매개 변수

bufferWriter
IBufferWriter<Byte>

적용 대상

Reset()

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

다시 사용할 수 있도록 이 인스턴스의 내부 상태를 다시 설정합니다.

public:
 void Reset();
public void Reset();
member this.Reset : unit -> unit
Public Sub Reset ()

예외

이 인스턴스가 삭제되었습니다.

설명

Utf8JsonWriter 원래 작성기 옵션과 원래 출력(또는 IBufferWriter<T>Stream)을 대상으로 계속 사용합니다.

적용 대상

Reset(IBufferWriter<Byte>)

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

새 인스턴스와 함께 다시 사용할 수 있도록 이 인스턴스의 IBufferWriter<T>내부 상태를 다시 설정합니다.

public:
 void Reset(System::Buffers::IBufferWriter<System::Byte> ^ bufferWriter);
public void Reset(System.Buffers.IBufferWriter<byte> bufferWriter);
member this.Reset : System.Buffers.IBufferWriter<byte> -> unit
Public Sub Reset (bufferWriter As IBufferWriter(Of Byte))

매개 변수

bufferWriter
IBufferWriter<Byte>

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

예외

bufferWriternull입니다.

이 인스턴스가 삭제되었습니다.

설명

Utf8JsonWriter 원래 작성기 옵션을 계속 사용하지만 이제는 새 대상으로 씁니다bufferWriter.

적용 대상

Reset(Stream)

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

새 인스턴스와 함께 다시 사용할 수 있도록 이 인스턴스의 Stream내부 상태를 다시 설정합니다.

public:
 void Reset(System::IO::Stream ^ utf8Json);
public void Reset(System.IO.Stream utf8Json);
member this.Reset : System.IO.Stream -> unit
Public Sub Reset (utf8Json As Stream)

매개 변수

utf8Json
Stream

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

예외

utf8Jsonnull입니다.

이 인스턴스가 삭제되었습니다.

설명

Utf8JsonWriter 원래 작성기 옵션을 계속 사용하지만 이제는 새 대상으로 씁니다utf8Json.

적용 대상