8 references to IsIgnored
System.Text.Json (8)
System\Text\Json\Serialization\Metadata\JsonParameterInfo.cs (1)
125internal bool ShouldDeserialize => !MatchingProperty.IsIgnored;
System\Text\Json\Serialization\Metadata\JsonPropertyInfo.cs (3)
421if (IsIgnored) 480this is { DeclaringType.IsValueType: false, IsIgnored: false, IsExtensionData: false } && 1001/// in cases of recursive types or <see cref="IsIgnored"/> is true.
System\Text\Json\Serialization\Metadata\JsonTypeInfo.cs (3)
1411if (other.IsIgnored) 1422jsonPropertyInfo.IsIgnored || 1437if (jsonPropertyInfo.IsIgnored)
System\Text\Json\Serialization\Metadata\PolymorphicTypeResolver.cs (1)
102if (property is { IsIgnored: false, IsExtensionData: false } && property.Name == propertyName)