Setting Interface
Represents the command-line options containing the parsed options and the remaining non-option arguments.
C#
public interface Setting
- Derived
Properties
Schema |
Gets the OptionSchema object that created this object. |
Arguments |
Gets the remaining non-option arguments. |
Options |
Gets the options in order of appearance. |
Properties Detail
Schema
Gets the OptionSchema object that created this object.
C#
OptionSchema Schema { get; }
Property Value
Arguments
Gets the remaining non-option arguments.
C#
IEnumerable<string> Arguments { get; }
Property Value
Options
Gets the options in order of appearance.
C#
IEnumerable<Option> Options { get; }