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;
172
if (reader.ValueLength > JsonConstants.
MaximumFloatingPointConstantLength
)
178
buffer = stackalloc byte[JsonConstants.
MaximumFloatingPointConstantLength
];
183
if (written > JsonConstants.
MaximumFloatingPointConstantLength
)