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