4 references to MinimumDateTimeParseLength
System.Text.Json (4)
System\Text\Json\JsonHelpers.Date.cs (2)
32
return IsInRangeInclusive(length, JsonConstants.
MinimumDateTimeParseLength
, JsonConstants.MaximumEscapedDateTimeOffsetParseLength);
38
return IsInRangeInclusive(length, JsonConstants.
MinimumDateTimeParseLength
, JsonConstants.MaximumDateTimeOffsetParseLength);
System\Text\Json\Reader\Utf8JsonReader.TryGet.cs (2)
1251
if (!JsonHelpers.IsInRangeInclusive(sequenceLength, JsonConstants.
MinimumDateTimeParseLength
, JsonConstants.MaximumEscapedDateTimeOffsetParseLength))
1296
if (!JsonHelpers.IsInRangeInclusive(sequenceLength, JsonConstants.
MinimumDateTimeParseLength
, JsonConstants.MaximumEscapedDateTimeOffsetParseLength))