JsonWriterOptions.Indented Propriedade
Definição
Obtém ou define um valor que indica se o Utf8JsonWriter deve formatar a saída JSON, o que inclui o recuo dos tokens JSON aninhados, a adição de novas linhas e a adição de espaço em branco entre os nomes e valores de propriedade.Gets or sets a value that indicates whether the Utf8JsonWriter should format the JSON output, which includes indenting nested JSON tokens, adding new lines, and adding white space between property names and values.
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
Valor da propriedade
true para formatar a saída JSON; false para gravar sem nenhum espaço em branco extra.true to format the JSON output; false to write without any extra white space. O padrão é false.The default is false.