Class PageCommandAttribute
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
-
objectAttributePageCommandAttribute
- 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