1 write to IsGetNullable
System.Text.Json (1)
System\Text\Json\Serialization\Metadata\DefaultJsonTypeInfoResolver.Helpers.cs (1)
488propertyInfo.IsGetNullable = nullabilityInfo.ReadState is not NullabilityState.NotNull;
4 references to IsGetNullable
Microsoft.AspNetCore.OpenApi (1)
Extensions\JsonNodeSchemaExtensions.cs (1)
453if (propertyInfo.PropertyType != typeof(object) && (propertyInfo.IsGetNullable || propertyInfo.IsSetNullable))
System.Text.Json (3)
System\Text\Json\Schema\JsonSchemaExporter.cs (2)
143parentPolymorphicTypeIsNonNullable: propertyInfo is { IsGetNullable: false, IsSetNullable: false }, 364? propertyInfo.IsGetNullable || propertyInfo.IsSetNullable
System\Text\Json\Serialization\Metadata\JsonPropertyInfoOfT.cs (1)
212if (!IsGetNullable && Options.RespectNullableAnnotations)