1 instantiation of Point
Microsoft.AspNetCore.OpenApi.Tests (1)
Services\OpenApiSchemaService\OpenApiSchemaService.ResponseSchemas.cs (1)
350static Point? GetNullablePoint() => Random.Shared.Next() < 0.5 ? new Point { X = 10, Y = 20 } : null;
2 references to Point
Microsoft.AspNetCore.OpenApi.Tests (2)
Services\OpenApiSchemaService\OpenApiSchemaService.RequestBodySchemas.cs (1)
476builder.MapPost("/api/nullable-point", (Point? point) => { });
Services\OpenApiSchemaService\OpenApiSchemaService.ResponseSchemas.cs (1)
350static Point? GetNullablePoint() => Random.Shared.Next() < 0.5 ? new Point { X = 10, Y = 20 } : null;