Interface ICommandOption
This is used in the ICommandHelp to send a list of command parameters to the client for explanatory help.
Namespace: DotNetNuke.Abstractions.Prompt
Assembly: DotNetNuke.Abstractions.dll
Syntax
public interface ICommandOption
Properties
| Improve this Doc View SourceDefaultValue
Gets or sets the default serialized value if it is specified.
Declaration
string DefaultValue { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Description
Gets or sets the description of what this parameter is for.
Declaration
string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
Gets or sets the name of the parameter.
Declaration
string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Required
Gets or sets a value indicating whether the parameter is required.
Declaration
bool Required { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |