Tagged Questions
The securityaction tag has no wiki summary.
2
votes
1answer
528 views
Catching ASP.Net MVC Principle Permission attribute exceptions
I would like to secure my MVC controller actions using...
[PrincipalPermission(SecurityAction.Demand, Role="Administrator")]
However, if the user is not in this role then a SecurityException ...
2
votes
1answer
616 views
Understanding .NET's “SecurityAction” parameter for permissions
Can anyone explain the meaning of and purposes of the values for the SecurityAction enum?
The MSDN page is not terribly clear. It says LinkDemand occurs at just-in-time compilation whereas Demand ...
1
vote
1answer
326 views
Role Based Authorization in .NET with PrincipalPermission and SecurityAction.Assert
I have a class attributed with
[PrincipalPermission(SecurityAction.Demand, Authenticated = true)]
public class MyProtectedClass { }
This works as expected and callers are denied access when the ...