Utf8JsonWriter.Reset 方法

定义

重载

Reset(Stream)

重置此实例的内部状态,以便可以结合 Stream 的新实例重复使用它。

Reset()

重置此实例的内部状态,以便可以重复使用它。

Reset(IBufferWriter<Byte>)

重置此实例的内部状态,以便可以结合 IBufferWriter<T> 的新实例重复使用它。

Reset(Stream)

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新目标。

适用于

Reset()

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

重置此实例的内部状态,以便可以结合 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新目标。

适用于