6 references to InternalServerError
IdentitySample.PasskeyConformance (2)
Program.cs (2)
123return Results.InternalServerError(new FailedResponse("Failed to create the user.")); 131return Results.InternalServerError(new FailedResponse("Unable to update the user."));
Microsoft.AspNetCore.Http.Results (1)
Results.cs (1)
695=> InternalServerError<object>(null);
Microsoft.AspNetCore.Http.Results.Tests (3)
ResultsTests.cs (3)
408var result = Results.InternalServerError(value) as InternalServerError<object>; 422var result = Results.InternalServerError(value) as InternalServerError<Todo>; 1758(() => Results.InternalServerError<object>(new()), typeof(InternalServerError<object>)),