1 write to IgnoreNullTokensOnRead
System.Text.Json (1)
System\Text\Json\Serialization\Metadata\JsonPropertyInfo.cs (1)
409IgnoreNullTokensOnRead = !_isUserSpecifiedSetter && !IsRequired;
6 references to IgnoreNullTokensOnRead
System.Text.Json (6)
System\Text\Json\Serialization\Converters\Object\ObjectWithParameterizedConstructorConverter.cs (1)
219if (propValue is not null || !jsonPropertyInfo.IgnoreNullTokensOnRead || default(T) is not null)
System\Text\Json\Serialization\Metadata\JsonParameterInfo.cs (1)
49IgnoreNullTokensOnRead = matchingProperty.IgnoreNullTokensOnRead;
System\Text\Json\Serialization\Metadata\JsonPropertyInfo.cs (1)
374Debug.Assert(!IgnoreNullTokensOnRead);
System\Text\Json\Serialization\Metadata\JsonPropertyInfoOfT.cs (3)
276if (!IgnoreNullTokensOnRead) 291if (!isNullToken || !IgnoreNullTokensOnRead || default(T) is not null) 304if (!isNullToken || !IgnoreNullTokensOnRead || default(T) is not null || state.IsContinuation)