Utf8JsonWriter.WritePropertyName 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
WritePropertyName(JsonEncodedText) |
编写预编码属性名称(作为 JSON 字符串)作为 JSON 对象的名称/值对的第一部分。 |
WritePropertyName(String) |
编写属性名称(作为 JSON 字符串)作为 JSON 对象的名称/值对的第一部分。 |
WritePropertyName(ReadOnlySpan<Byte>) |
编写 UTF-8 属性名称(作为 JSON 字符串)作为 JSON 对象的名称/值对的第一部分。 |
WritePropertyName(ReadOnlySpan<Char>) |
编写属性名称(作为 JSON 字符串)作为 JSON 对象的名称/值对的第一部分。 |
WritePropertyName(JsonEncodedText)
编写预编码属性名称(作为 JSON 字符串)作为 JSON 对象的名称/值对的第一部分。
public:
void WritePropertyName(System::Text::Json::JsonEncodedText propertyName);
public void WritePropertyName (System.Text.Json.JsonEncodedText propertyName);
member this.WritePropertyName : System.Text.Json.JsonEncodedText -> unit
Public Sub WritePropertyName (propertyName As JsonEncodedText)
参数
- propertyName
- JsonEncodedText
要进行转码并写为 UTF-8 的 JSON 对象的 JSON 编码属性名称。
例外
系统已启用验证,该编写操作将生成无效的 JSON。
注解
创建 实例 JsonEncodedText 时,属性名称应已转义。
适用于
WritePropertyName(String)
编写属性名称(作为 JSON 字符串)作为 JSON 对象的名称/值对的第一部分。
public:
void WritePropertyName(System::String ^ propertyName);
public void WritePropertyName (string propertyName);
member this.WritePropertyName : string -> unit
Public Sub WritePropertyName (propertyName As String)
参数
- propertyName
- String
要进行转码并写为 UTF-8 的 JSON 对象的属性名称。
例外
指定的属性名称过长。
系统已启用验证,该编写操作将生成无效的 JSON。
propertyName
为 null
。
注解
属性名称在写入之前进行转义。
适用于
WritePropertyName(ReadOnlySpan<Byte>)
编写 UTF-8 属性名称(作为 JSON 字符串)作为 JSON 对象的名称/值对的第一部分。
public:
void WritePropertyName(ReadOnlySpan<System::Byte> utf8PropertyName);
public void WritePropertyName (ReadOnlySpan<byte> utf8PropertyName);
member this.WritePropertyName : ReadOnlySpan<byte> -> unit
Public Sub WritePropertyName (utf8PropertyName As ReadOnlySpan(Of Byte))
参数
- utf8PropertyName
- ReadOnlySpan<Byte>
要编写的 JSON 对象的 UTF-8 编码属性名称。
例外
指定的属性名称过长。
系统已启用验证,该编写操作将生成无效的 JSON。
注解
属性名称在写入之前进行转义。
适用于
WritePropertyName(ReadOnlySpan<Char>)
编写属性名称(作为 JSON 字符串)作为 JSON 对象的名称/值对的第一部分。
public:
void WritePropertyName(ReadOnlySpan<char> propertyName);
public void WritePropertyName (ReadOnlySpan<char> propertyName);
member this.WritePropertyName : ReadOnlySpan<char> -> unit
Public Sub WritePropertyName (propertyName As ReadOnlySpan(Of Char))
参数
- propertyName
- ReadOnlySpan<Char>
要进行转码并写为 UTF-8 的 JSON 对象的属性名称。
例外
指定的属性名称过长。
系统已启用验证,该编写操作将生成无效的 JSON。
注解
属性名称在写入之前进行转义。