3 references to MaximumIndentSize
System.Text.Json (3)
System\Text\Json\Writer\JsonWriterHelper.cs (2)
59if (value is < JsonConstants.MinimumIndentSize or > JsonConstants.MaximumIndentSize) 60ThrowHelper.ThrowArgumentOutOfRangeException_IndentSize(nameof(value), JsonConstants.MinimumIndentSize, JsonConstants.MaximumIndentSize);
System\Text\Json\Writer\JsonWriterOptions.cs (1)
170private const int IndentSizeMask = JsonConstants.MaximumIndentSize << OptionsBitCount;