Class StringArgument
Argument implementation for working with string values
Implements
Inherited Members
Namespace: Benday.CommandsFramework
Assembly: Benday.CommandsFramework.dll
Syntax
public class StringArgument : Argument<string>, IArgument
Constructors
| Edit this page View SourceStringArgument(string)
Constructor. Creates an argument definition without a value. This is typically used in a command for describing the available arguments.
Declaration
public StringArgument(string name)
Parameters
Type | Name | Description |
---|---|---|
string | name | Name of the argument on the command line |
Properties
| Edit this page View SourceDataType
Data type for the argument
Declaration
public override ArgumentDataType DataType { get; }
Property Value
Type | Description |
---|---|
ArgumentDataType |
Overrides
Methods
| Edit this page View SourceGetDefaultValue()
Get the default value for the argument
Declaration
protected override string GetDefaultValue()
Returns
Type | Description |
---|---|
string | Empty string |
Overrides
| Edit this page View SourceTrySetValue(string)
Try to set a string value to this string argument
Declaration
public override bool TrySetValue(string input)
Parameters
Type | Name | Description |
---|---|---|
string | input | Value as string |
Returns
Type | Description |
---|---|
bool | True if the value was successfully converted to string and set into the value |
Overrides
| Edit this page View SourceValidate()
Validate the argument value against the argument definition
Declaration
public override bool Validate()
Returns
Type | Description |
---|---|
bool | True if the argument is valid |