Class BooleanArgument
Argument implementation for working with boolean values
Inherited Members
Namespace: Benday.CommandsFramework
Assembly: Benday.CommandsFramework.dll
Syntax
public class BooleanArgument : Argument<bool>, IArgument, IBooleanArgument
Constructors
| Edit this page View SourceBooleanArgument(string)
Constructor. Creates an argument definition without a value. This is typically used in a command for describing the available arguments.
Declaration
public BooleanArgument(string name)
Parameters
Type | Name | Description |
---|---|---|
string | name | Name of the argument on the command line |
Properties
| Edit this page View SourceDataType
Argument data type
Declaration
public override ArgumentDataType DataType { get; }
Property Value
Type | Description |
---|---|
ArgumentDataType |
Overrides
| Edit this page View SourceValueAsBoolean
Value as boolean
Declaration
public bool ValueAsBoolean { get; }
Property Value
Type | Description |
---|---|
bool |
Methods
| Edit this page View SourceGetDefaultValue()
Default value for the argument. If this argument is configured to allow empty values, the default value will be false. Otherwise, the default value is true.
Declaration
protected override bool GetDefaultValue()
Returns
Type | Description |
---|---|
bool |
Overrides
| Edit this page View SourceTrySetValue(string)
Try to set a string value to this boolean 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 bool and set into the value |