1 write to IgnoreNullTokensOnRead
System.Text.Json (1)
System\Text\Json\Serialization\Metadata\JsonPropertyInfo.cs (1)
509IgnoreNullTokensOnRead = !_isUserSpecifiedSetter && !IsRequired;
6 references to IgnoreNullTokensOnRead
System.Text.Json (6)
System\Text\Json\Serialization\Converters\Object\ObjectWithParameterizedConstructorConverter.cs (1)
229if (propValue is not null || !jsonPropertyInfo.IgnoreNullTokensOnRead || default(T) is not null)
System\Text\Json\Serialization\Metadata\JsonParameterInfo.cs (1)
118internal bool IgnoreNullTokensOnRead => MatchingProperty.IgnoreNullTokensOnRead;
System\Text\Json\Serialization\Metadata\JsonPropertyInfo.cs (1)
463Debug.Assert(!IgnoreNullTokensOnRead);
System\Text\Json\Serialization\Metadata\JsonPropertyInfoOfT.cs (3)
294if (!IgnoreNullTokensOnRead) 314if (!isNullToken || !IgnoreNullTokensOnRead || default(T) is not null) 333if (!isNullToken || !IgnoreNullTokensOnRead || default(T) is not null || state.IsContinuation)