ChildActionOnlyAttribute Class

Definition

Represents an attribute that is used to indicate that an action method should be called only as a child action.

[System.AttributeUsage(System.AttributeTargets.Class | System.AttributeTargets.Method, AllowMultiple=false, Inherited=true)]
public sealed class ChildActionOnlyAttribute : System.Web.Mvc.FilterAttribute, System.Web.Mvc.IAuthorizationFilter
type ChildActionOnlyAttribute = class
    inherit FilterAttribute
    interface IAuthorizationFilter
Public NotInheritable Class ChildActionOnlyAttribute
Inherits FilterAttribute
Implements IAuthorizationFilter
Inheritance
ChildActionOnlyAttribute
Attributes
Implements

Constructors

ChildActionOnlyAttribute()

Initializes a new instance of the ChildActionOnlyAttribute class.

Properties

AllowMultiple

Gets or sets a value that indicates whether more than one instance of the filter attribute can be specified.

(Inherited from FilterAttribute)
Order

Gets or sets the order in which the action filters are executed.

(Inherited from FilterAttribute)

Methods

OnAuthorization(AuthorizationContext)

Called when authorization is required.

Applies to