Reputation: 3224
If I set an all-users authorization rule e.g. <allow users="*"/>
does this also allow anonymous users (ie. ones that haven't logged in) to see the resource?
How about vice-versa - if I allow anonymous users with "?" can all logged in users also see it?
Upvotes: 1
Views: 212
Reputation: 4021
*
means absolutely anybody.?
means anonymous users from which all users "inherit".Difference is mentioned in ASP.NET Authorization article.
Upvotes: 2