При обращении к серверу с методом delete выпадает ошибка "DELETE
https://localhost:7005/Api/Requests/1 405 (Method Not Allowed)"
Вот код метода:
[HttpDelete]
public async Task<ActionResult> DeleteRequest([FromRoute] int id)
{
// тут был не важный код
if (request is null)
return NotFound();
// тут был не важный код
return Ok();
}
Вот код отправки запроса:
public static async Task<bool> DeleteRequest(int id)
{
var response = await _httpClient.DeleteAsync(
$"https://localhost:7005/Api/Requests/DeleteRequest/{id.ToString()}");
if (response.IsSuccessStatusCode)
return true;
return false;
}