6 references to Ok
EventHubsApi (1)
Program.cs (1)
20
return Results.
Ok
();
Microsoft.AspNetCore.Http.Results.Tests (4)
ResultsTests.cs (4)
1210
var result = Results.
Ok
(value) as Ok<object>;
1235
var 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
());