8 references to Allow
System.Web (8)
Configuration\AuthorizationRule.cs (3)
46
private AuthorizationRuleAction _Action = AuthorizationRuleAction.
Allow
;
47
internal string _ActionString = AuthorizationRuleAction.
Allow
.ToString();
441
int answer = ((Action == AuthorizationRuleAction.
Allow
) ? 1 : -1); // return value if this rule applies
Configuration\AuthorizationRuleCollection.cs (4)
59
newElement.Action = AuthorizationRuleAction.
Allow
;
135
if (!fAnyDenyRulesFound && rule.Action == AuthorizationRuleAction.
Allow
)
143
if (!fAnyDenyRulesFound && rule.Action == AuthorizationRuleAction.
Allow
)
148
if (!fAnyAllowRulesFound && rule.Action == AuthorizationRuleAction.
Allow
)
Configuration\AuthorizationSection.cs (1)
85
_EveryoneAllowed = (Rules[0].Action == AuthorizationRuleAction.
Allow
&& Rules[0].Everyone);