ASP.NET Core authorization


Topic | v1 | created by jjones |
Description

ASP.NET Core authorization provides a simple, declarative role and a rich policy-based model. Authorization is expressed in requirements, and handlers evaluate a user's claims against requirements. Imperative checks can be based on simple policies or policies which evaluate both the user identity and properties of the resource that the user is attempting to access.


Relations

subtopic of ASP.NET Core

ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft...

is Authorization

Authorization is the function of specifying access rights/privileges to resources, which is related t...


Edit details Edit relations Attach new author Attach new topic Attach new resource
Resources

treated in Part 1: A better way to handle authorization in ASP.NET Core – The Reformed Programmer

I was asked by one of my clients to help build a fairly large web application, and their authenticati...