Table of Contents

Class PageCommandAttribute

Namespace
Kentico.Xperience.Admin.Base
Assembly
Kentico.Xperience.Admin.Base.dll

Use this attribute to annotate methods of pages which will be invoked as commands.

[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
public sealed class PageCommandAttribute : Attribute
Inheritance
object
Attribute
PageCommandAttribute
Extension Methods

Remarks

The command is by default registered with the name of the annotated method.

Alternatively the name can be specified with the CommandName property.

Properties

CommandName

Name of the Page command. The name has to be unique.

public string CommandName { get; set; }

Property Value

string

Permission

Permission required for the command.

public string Permission { get; set; }

Property Value

string