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