5 references to MaximumEscapedGuidLength
System.Text.Json (5)
System\Text\Json\Reader\JsonReaderHelper.cs (3)
180if (segment.Length > JsonConstants.MaximumEscapedGuidLength) 207Debug.Assert(source.Length <= JsonConstants.MaximumEscapedGuidLength); 209Span<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];