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