4 references to DefaultIndentCharacter
System.Text.Json (4)
System\Text\Json\Serialization\JsonSerializerOptions.cs (1)
98
private char _indentCharacter = JsonConstants.
DefaultIndentCharacter
;
System\Text\Json\Writer\JsonWriterHelper.cs (1)
52
if (value is not JsonConstants.
DefaultIndentCharacter
and not JsonConstants.TabIndentCharacter)
System\Text\Json\Writer\JsonWriterOptions.cs (2)
55
readonly get => (_optionsMask & IndentCharacterBit) != 0 ? JsonConstants.TabIndentCharacter : JsonConstants.
DefaultIndentCharacter
;
59
if (value is not JsonConstants.
DefaultIndentCharacter
)