4 references to CanBeNull
System.Text.Json.SourceGeneration (4)
JsonSourceGenerator.Emitter.cs (3)
986if (!skipNullCheck && typeGenSpec.TypeRef.CanBeNull) 1067JsonIgnoreCondition.WhenWritingNull => propertySpec.PropertyType.CanBeNull ? SerializedValueCheckType.IgnoreWhenNull : SerializedValueCheckType.None, 1068JsonIgnoreCondition.WhenWritingDefault => propertySpec.PropertyType.CanBeNull ? SerializedValueCheckType.IgnoreWhenNull : SerializedValueCheckType.IgnoreWhenDefault,
JsonSourceGenerator.Parser.cs (1)
1554IsNullable = property.PropertyType.CanBeNull && !property.IsSetterNonNullableAnnotation,