6 references to Ok
EventHubsApi (1)
Program.cs (1)
20return Results.Ok();
Microsoft.AspNetCore.Http.Results.Tests (4)
ResultsTests.cs (4)
1210var result = Results.Ok(value) as Ok<object>; 1235var result = Results.Ok() as Ok; 1763(() => Results.Ok(null), typeof(Ok)), 1764(() => Results.Ok(new()), typeof(Ok<object>)),
Microsoft.AspNetCore.OpenApi.Microbenchmarks (1)
GenerationBenchmarks.cs (1)
35_builder.MapPost($"/{i}", (Todo todo) => Results.Ok());