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