Utf8JsonWriter.Reset 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
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 文本的目标。
例外
utf8Json
为 null
。
已释放此实例。
注解
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 文本的目标。
例外
bufferWriter
为 null
。
已释放此实例。
注解
Utf8JsonWriter将继续使用原始编写器选项,但现在将写入 作为bufferWriter
新目标。