Class DateTimeArgument
Argument implementation for working with DateTime values
Inherited Members
Namespace: Benday.CommandsFramework
Assembly: Benday.CommandsFramework.dll
Syntax
public class DateTimeArgument : Argument<DateTime>, IArgument, IDateTimeArgument
Constructors
| Edit this page View SourceDateTimeArgument(string)
Constructor. Creates an argument definition without a value. This is typically used in a command for describing the available arguments.
Declaration
public DateTimeArgument(string name)
Parameters
Type | Name | Description |
---|---|---|
string | name | Name of the argument on the command line |
Properties
| Edit this page View SourceCultureInfo
Declaration
public CultureInfo? CultureInfo { get; set; }
Property Value
Type | Description |
---|---|
CultureInfo |
DataType
Argument data type
Declaration
public override ArgumentDataType DataType { get; }
Property Value
Type | Description |
---|---|
ArgumentDataType |
Overrides
| Edit this page View SourceValueAsDateTime
Value as DateTime
Declaration
public DateTime ValueAsDateTime { get; }
Property Value
Type | Description |
---|---|
DateTime |
Methods
| Edit this page View SourceGetDefaultValue()
Default value for this argument.
Declaration
protected override DateTime GetDefaultValue()
Returns
Type | Description |
---|---|
DateTime | DateTime.MinValue |
Overrides
| Edit this page View SourceTrySetValue(string)
Try to set a string value to this DateTime 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 and set into the value |