Utf8JsonWriter.WriteCommentValue 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
WriteCommentValue(ReadOnlySpan<Byte>) |
将 UTF-8 文本值编写为 JSON 注释。 |
WriteCommentValue(ReadOnlySpan<Char>) |
将 UTF-16 文本值编写为 JSON 注释。 |
WriteCommentValue(String) |
将字符串文本值编写为 JSON 注释。 |
WriteCommentValue(ReadOnlySpan<Byte>)
将 UTF-8 文本值编写为 JSON 注释。
public:
void WriteCommentValue(ReadOnlySpan<System::Byte> utf8Value);
public void WriteCommentValue (ReadOnlySpan<byte> utf8Value);
member this.WriteCommentValue : ReadOnlySpan<byte> -> unit
Public Sub WriteCommentValue (utf8Value As ReadOnlySpan(Of Byte))
参数
- utf8Value
- ReadOnlySpan<Byte>
要在 /../
中编写为 JSON 注释的 UTF-8 编码值。
例外
注解
在写入之前不会转义注释值。
适用于
WriteCommentValue(ReadOnlySpan<Char>)
将 UTF-16 文本值编写为 JSON 注释。
public:
void WriteCommentValue(ReadOnlySpan<char> value);
public void WriteCommentValue (ReadOnlySpan<char> value);
member this.WriteCommentValue : ReadOnlySpan<char> -> unit
Public Sub WriteCommentValue (value As ReadOnlySpan(Of Char))
参数
- value
- ReadOnlySpan<Char>
要在 /../
中编写为 UTF-8 转码 JSON 注释的 UTF-16 编码值。
例外
注解
在写入之前不会转义注释值。
适用于
WriteCommentValue(String)
将字符串文本值编写为 JSON 注释。
public:
void WriteCommentValue(System::String ^ value);
public void WriteCommentValue (string value);
member this.WriteCommentValue : string -> unit
Public Sub WriteCommentValue (value As String)
参数
- value
- String
要在 /../
中编写为 UTF-8 转码 JSON 注释的 UTF-16 编码值。
例外
value
参数为 null
。
注解
在写入之前不会转义注释值。