A Module Action CommandName represents a string used by the ModuleTitle to notify the parent module that a given Module Action was selected in the Module Menu.

Namespace: DotNetNuke.Entities.Modules.Actions
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
public string CommandName { get; set; }
Visual Basic
Public Property CommandName As String
	Get
	Set

Field Value

The name of the command to perform.

Remarks

Use the CommandName property to determine the command to perform. The CommandName property can contain any string set by the programmer. The programmer can then identify the command name in code and perform the appropriate tasks.

See Also