AuthorizationRuleAction Enum

Definition

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

public enum class AuthorizationRuleAction
public enum AuthorizationRuleAction
type AuthorizationRuleAction = 
Public Enum AuthorizationRuleAction
Inheritance
AuthorizationRuleAction

Fields

Allow 1

The authorization type allows access to the resource.

Deny 0

The authorization type denies 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.

// Create an authorization rule object.
AuthorizationRuleAction action =
    AuthorizationRuleAction.Deny;
AuthorizationRule authorizationRule = 
    new System.Web.Configuration.AuthorizationRule(action);
' Create an authorization rule object.
  Dim action As AuthorizationRuleAction = _
  AuthorizationRuleAction.Deny
  Dim 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

See also