JsonWriterOptions.Indented 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示 Utf8JsonWriter 是否应对 JSON 输入进行格式设置,包括缩进嵌套的 JSON 令牌、添加新行以及在属性名称和值之间添加空格。
public:
property bool Indented { bool get(); void set(bool value); };
public bool Indented { get; set; }
member this.Indented : bool with get, set
Public Property Indented As Boolean
属性值
true
如果 JSON 输出已设置格式,则为 ; false
如果编写 JSON 时没有任何额外的空格,则为 。 默认为 false
。