6 references to MaximumEscapedGuidLength
System.Text.Json (6)
System\Text\Json\Document\JsonDocument.cs (1)
742if (segment.Length > JsonConstants.MaximumEscapedGuidLength)
System\Text\Json\Reader\JsonReaderHelper.cs (2)
128Debug.Assert(source.Length <= JsonConstants.MaximumEscapedGuidLength); 130Span<byte> utf8Unescaped = stackalloc byte[JsonConstants.MaximumEscapedGuidLength];
System\Text\Json\Reader\Utf8JsonReader.TryGet.cs (3)
1382if (sequenceLength > JsonConstants.MaximumEscapedGuidLength) 1388Span<byte> stackSpan = stackalloc byte[JsonConstants.MaximumEscapedGuidLength]; 1394if (ValueSpan.Length > JsonConstants.MaximumEscapedGuidLength)