Class ForbiddenResult
- Namespace
- Cuemon.AspNetCore.Mvc
- Assembly
- Cuemon.AspNetCore.Mvc.dll
An ActionResult that returns a Forbidden (403) response.
public class ForbiddenResult : StatusCodeResult, IClientErrorActionResult, IStatusCodeActionResult, IActionResult
- Inheritance
-
ForbiddenResult
- Implements
- Inherited Members
Constructors
ForbiddenResult(int)
Initializes a new instance of the ForbiddenResult class.
public ForbiddenResult(int statusCode = 403)
Parameters
statusCode
intThe HTTP status code of the response which has to be in the 400-499 range. Default is 403, but for security reasons you may wish to "hide" this with another, e.g., 400, 404 or whatever fits your strategy.