14 references to MaxEscapedTokenSize
System.Text.Json (14)
System\Text\Json\JsonConstants.cs (2)
79public const int MaxUnescapedTokenSize = MaxEscapedTokenSize / MaxExpansionFactorWhileEscaping; // 166_666_666 bytes 80public const int MaxCharacterTokenSize = MaxEscapedTokenSize / MaxExpansionFactorWhileEscaping; // 166_666_666 characters
System\Text\Json\Writer\Utf8JsonWriter.WriteProperties.String.cs (12)
161Debug.Assert(escapedPropertyName.Length <= JsonConstants.MaxEscapedTokenSize); 192Debug.Assert(escapedPropertyName.Length <= JsonConstants.MaxEscapedTokenSize); 322Debug.Assert(escapedPropertyName.Length <= JsonConstants.MaxEscapedTokenSize); 352Debug.Assert(escapedPropertyNameSection.Length <= JsonConstants.MaxEscapedTokenSize - 3); 380Debug.Assert(escapedPropertyName.Length <= JsonConstants.MaxEscapedTokenSize); 1407Debug.Assert(escapedValue.Length <= JsonConstants.MaxEscapedTokenSize); 1443Debug.Assert(escapedValue.Length <= JsonConstants.MaxEscapedTokenSize); 1479Debug.Assert(escapedValue.Length <= JsonConstants.MaxEscapedTokenSize); 1518Debug.Assert(escapedValue.Length <= JsonConstants.MaxEscapedTokenSize); 1568Debug.Assert(escapedValue.Length <= JsonConstants.MaxEscapedTokenSize); 1619Debug.Assert(escapedValue.Length <= JsonConstants.MaxEscapedTokenSize); 1670Debug.Assert(escapedValue.Length <= JsonConstants.MaxEscapedTokenSize);