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