5 references to MaximumEscapedGuidLength
System.Text.Json (5)
System\Text\Json\Reader\JsonReaderHelper.cs (3)
251if (segment.Length > JsonConstants.MaximumEscapedGuidLength) 278Debug.Assert(source.Length <= JsonConstants.MaximumEscapedGuidLength); 280Span<byte> utf8Unescaped = stackalloc byte[JsonConstants.MaximumEscapedGuidLength];
System\Text\Json\Reader\Utf8JsonReader.TryGet.cs (2)
1342if (sequenceLength > JsonConstants.MaximumEscapedGuidLength) 1348Span<byte> stackSpan = stackalloc byte[JsonConstants.MaximumEscapedGuidLength];