RolesRequiredHttpContextExtensions.ValidateAppRole Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
When applied to an HttpContext, verifies that the application has the expected roles.
public static void ValidateAppRole (this Microsoft.AspNetCore.Http.HttpContext context, params string[] acceptedRoles);
static member ValidateAppRole : Microsoft.AspNetCore.Http.HttpContext * string[] -> unit
<Extension()>
Public Sub ValidateAppRole (context As HttpContext, ParamArray acceptedRoles As String())
Parameters
- context
- HttpContext
HttpContext (from the controller).
- acceptedRoles
- String[]
Roles accepted by this web API.
Remarks
When the roles don't match, the response is a 403 (Forbidden), because the app does not have the expected roles.