AuthorizationRuleAction Enum

Definition

Specifies the type of authorization to apply when accessing a resource.

C#
public enum AuthorizationRuleAction
Inheritance
AuthorizationRuleAction

Fields

Name Value Description
Deny 0

The authorization type denies access to the resource.

Allow 1

The authorization type allows access to the resource.

Examples

The following code example shows how use the Action property. This code example is part of a larger example provided for the AuthorizationRule class.

C#
// Create an authorization rule object.
AuthorizationRuleAction action =
    AuthorizationRuleAction.Deny;
AuthorizationRule authorizationRule = 
    new System.Web.Configuration.AuthorizationRule(action);

Remarks

Use the Action property to programmatically configure the authorization action to be used by a Web application.

Applies to

Proizvod Verzije
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also