Interface ICommand
This is used to retrieve and keep a list of all commands found in the installation.
Namespace: DotNetNuke.Abstractions.Prompt
Assembly: DotNetNuke.Abstractions.dll
Syntax
public interface ICommand
Properties
| Improve this Doc View SourceCategory
Gets or sets the category to which this command belongs.
Declaration
string Category { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
This is used to group the list of commands when a user requests this.
Description
Gets or sets the description of the command.
Declaration
string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Key
Gets or sets the key that is used to lookup the command internally (= upper cased command name).
Declaration
string Key { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
Gets or sets the name of the command.
Declaration
string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TypeFullName
Gets or sets the full name of the class of the command.
Declaration
string TypeFullName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Version
Gets or sets the assembly version of the assembly containing the command.
Declaration
string Version { get; set; }
Property Value
Type | Description |
---|---|
System.String |