Table of Contents

Class PageCommandEventArgs

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

Object event arguments for a page command invoked event.

public class PageCommandEventArgs : CMSEventArgs
Inheritance
object
EventArgs
PageCommandEventArgs
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 string

Name of the command.

parameters object

The 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; }

Property Value

ICommandResponse