12 references to NotFound
CatalogService (2)
CatalogApi.cs (2)
37return Results.NotFound(); 44return Results.NotFound();
Microsoft.AspNetCore.Http.Results.Tests (4)
ResultsTests.cs (4)
1172var result = Results.NotFound(value) as NotFound<object>; 1197var 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(); 63return rows > 0 ? Results.NoContent() : Results.NotFound();
RateLimitingSample (3)
Program.cs (3)
69: Results.NotFound()); 85return Results.NotFound(); 105return Results.NotFound();
SimpleWebSiteWithWebApplicationBuilder (1)
Program.cs (1)
34return NotFound();