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