12 references to NotFound
CatalogService (2)
CatalogApi.cs (2)
37
return Results.
NotFound
();
44
return Results.
NotFound
();
Microsoft.AspNetCore.Http.Results.Tests (4)
ResultsTests.cs (4)
1172
var result = Results.
NotFound
(value) as NotFound<object>;
1197
var result = Results.
NotFound
() as NotFound;
1761
(() => Results.
NotFound
(null), typeof(NotFound)),
1762
(() => Results.
NotFound
(new()), typeof(NotFound<object>)),
MySql.ApiService (2)
Program.cs (2)
40
: Results.
NotFound
();
63
return rows > 0 ? Results.NoContent() : Results.
NotFound
();
RateLimitingSample (3)
Program.cs (3)
69
: Results.
NotFound
());
85
return Results.
NotFound
();
105
return Results.
NotFound
();
SimpleWebSiteWithWebApplicationBuilder (1)
Program.cs (1)
34
return
NotFound
();