4 references to MaximumFloatingPointConstantLength
System.Text.Json (4)
System\Text\Json\Serialization\Converters\Value\HalfConverter.cs (4)
15
private const int MaxUnescapedFormatLength = JsonConstants.
MaximumFloatingPointConstantLength
* JsonConstants.MaxExpansionFactorWhileEscaping;
156
if (reader.ValueLength > JsonConstants.
MaximumFloatingPointConstantLength
)
162
buffer = stackalloc byte[JsonConstants.
MaximumFloatingPointConstantLength
];
167
if (written > JsonConstants.
MaximumFloatingPointConstantLength
)