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