Class PageCommandEventArgs
Object event arguments for a page command invoked event.
public class PageCommandEventArgs : CMSEventArgs
- Inheritance
-
objectEventArgsPageCommandEventArgs
- Inherited Members
- Extension Methods
Constructors
PageCommandEventArgs()
Initializes a new instance of the PageCommandEventArgs class.
public PageCommandEventArgs()
Remarks
This constructor is meant for system purposes, it shouldn't be used directly. Use PageCommandEventArgs(string, object) instead.
PageCommandEventArgs(string, object)
Initializes a new instance of the PageCommandEventArgs class.
public PageCommandEventArgs(string commandName, object parameters)
Parameters
commandName
stringName of the command.
parameters
objectThe command parameters.
Properties
CommandName
Name of the invoked command. Check this property in the event to determine if the currently executed command is the one the event should be handling.
public string CommandName { get; }
Property Value
- string
CommandParameters
Parameters of the invoked command.
public object CommandParameters { get; }
Property Value
- object
CommandResponse
Response returned by the page command. Use in Before event to set the result and cancel the event to return this new result.
public ICommandResponse CommandResponse { get; set; }