14 references to MaxCharacterTokenSize
System.Text.Json (14)
System\Text\Json\ThrowHelper.cs (6)
161Debug.Assert(value.Length > JsonConstants.MaxCharacterTokenSize); 169if (propertyName.Length > JsonConstants.MaxCharacterTokenSize) 183if (propertyName.Length > JsonConstants.MaxCharacterTokenSize) 189Debug.Assert(value.Length > JsonConstants.MaxCharacterTokenSize); 204Debug.Assert(propertyName.Length > JsonConstants.MaxCharacterTokenSize); 257Debug.Assert(propertyName.Length > JsonConstants.MaxCharacterTokenSize);
System\Text\Json\Writer\JsonWriterHelper.cs (7)
98if (propertyName.Length > JsonConstants.MaxCharacterTokenSize) 105if (value.Length > JsonConstants.MaxCharacterTokenSize) 112if (propertyName.Length > JsonConstants.MaxCharacterTokenSize || value.Length > JsonConstants.MaxUnescapedTokenSize) 119if (propertyName.Length > JsonConstants.MaxUnescapedTokenSize || value.Length > JsonConstants.MaxCharacterTokenSize) 133if (propertyName.Length > JsonConstants.MaxCharacterTokenSize || value.Length > JsonConstants.MaxCharacterTokenSize) 140if (propertyName.Length > JsonConstants.MaxCharacterTokenSize)
System\Text\Json\Writer\Utf8JsonWriter.WriteProperties.Helpers.cs (1)
16if (propertyName.Length > JsonConstants.MaxCharacterTokenSize || CurrentDepth >= _options.MaxDepth)