I have code that looks something like this:
[PrincipalPermission(SecurityAction.Demand, Role = "RoleA")]
class Foo
{
[PrincipalPermission(SecurityAction.Demand, Role = "RoleB")]
public static bool Bar()
{
return true;
}
}
If I try to run Foo.Bar();
it will fail if I don't have RoleA, but never checks for RoleB. It works regardless of whether or not I have RoleB, as long as I have RoleA.
If I remove [PrincipalPermission(SecurityAction.Demand, Role = "RoleA")]
from the class definition then it checks for RoleB as expected.
I've searched around and found this exact problem mentioned on two different SO questions (here and here) with no answer in either case. One has a comment that points to an old Microsoft Connect link that supposedly contains the answer, but there are no comments or answers that actually say what the problem is.
I would really, really appreciate any help with this.
Multiple PrincipalPermissionAttribute Demands are combined using OR, so in your case:
Because of this, your code is equivalent to:
If you want to combine Demands using AND, you should specify Role= as a comma-separated list, e.g. "RoleA,RoleB". Or use SecurityAction.Deny appropriately.
The example below illustrates this: