![]() |
BadScript 2
|
Defines generic overloads for CommandLine.Parser.ParseArguments(IEnumerable<string>,Type[]) method. More...
Static Public Member Functions | |
static ParserResult< object > | ParseArguments< T1, T2 > (this Parser parser, IEnumerable< string > args) |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array. | |
static ParserResult< object > | ParseArguments< T1, T2, T3 > (this Parser parser, IEnumerable< string > args) |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array. | |
static ParserResult< object > | ParseArguments< T1, T2, T3, T4 > (this Parser parser, IEnumerable< string > args) |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array. | |
static ParserResult< object > | ParseArguments< T1, T2, T3, T4, T5 > (this Parser parser, IEnumerable< string > args) |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array. | |
static ParserResult< object > | ParseArguments< T1, T2, T3, T4, T5, T6 > (this Parser parser, IEnumerable< string > args) |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array. | |
static ParserResult< object > | ParseArguments< T1, T2, T3, T4, T5, T6, T7 > (this Parser parser, IEnumerable< string > args) |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array. | |
static ParserResult< object > | ParseArguments< T1, T2, T3, T4, T5, T6, T7, T8 > (this Parser parser, IEnumerable< string > args) |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array. | |
static ParserResult< object > | ParseArguments< T1, T2, T3, T4, T5, T6, T7, T8, T9 > (this Parser parser, IEnumerable< string > args) |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array. | |
static ParserResult< object > | ParseArguments< T1, T2, T3, T4, T5, T6, T7, T8, T9, T10 > (this Parser parser, IEnumerable< string > args) |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array. | |
static ParserResult< object > | ParseArguments< T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11 > (this Parser parser, IEnumerable< string > args) |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array. | |
static ParserResult< object > | ParseArguments< T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12 > (this Parser parser, IEnumerable< string > args) |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array. | |
static ParserResult< object > | ParseArguments< T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13 > (this Parser parser, IEnumerable< string > args) |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array. | |
static ParserResult< object > | ParseArguments< T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14 > (this Parser parser, IEnumerable< string > args) |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array. | |
static ParserResult< object > | ParseArguments< T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15 > (this Parser parser, IEnumerable< string > args) |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array. | |
static ParserResult< object > | ParseArguments< T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16 > (this Parser parser, IEnumerable< string > args) |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array. | |
Defines generic overloads for CommandLine.Parser.ParseArguments(IEnumerable<string>,Type[]) method.
Definition at line 11 of file ParserExtensions.cs.
|
static |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array.
T1 | The type of the first verb. |
T2 | The type of the second verb. |
parser | A CommandLine.Parser instance. |
args | A System.String array of command line arguments, normally supplied by application entry point. |
System.ArgumentNullException | Thrown if one or more arguments are null. |
All types must expose a parameterless constructor.
Definition at line 33 of file ParserExtensions.cs.
|
static |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array.
T1 | The type of the first verb. |
T2 | The type of the second verb. |
T3 | The type of the third verb. |
parser | A CommandLine.Parser instance. |
args | A System.String array of command line arguments, normally supplied by application entry point. |
System.ArgumentNullException | Thrown if one or more arguments are null. |
All types must expose a parameterless constructor.
Definition at line 64 of file ParserExtensions.cs.
|
static |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array.
T1 | The type of the first verb. |
T2 | The type of the second verb. |
T3 | The type of the third verb. |
T4 | The type of the fourth verb. |
parser | A CommandLine.Parser instance. |
args | A System.String array of command line arguments, normally supplied by application entry point. |
System.ArgumentNullException | Thrown if one or more arguments are null. |
All types must expose a parameterless constructor.
Definition at line 96 of file ParserExtensions.cs.
|
static |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array.
T1 | The type of the first verb. |
T2 | The type of the second verb. |
T3 | The type of the third verb. |
T4 | The type of the fourth verb. |
T5 | The type of the fifth verb. |
parser | A CommandLine.Parser instance. |
args | A System.String array of command line arguments, normally supplied by application entry point. |
System.ArgumentNullException | Thrown if one or more arguments are null. |
All types must expose a parameterless constructor.
Definition at line 129 of file ParserExtensions.cs.
|
static |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array.
T1 | The type of the first verb. |
T2 | The type of the second verb. |
T3 | The type of the third verb. |
T4 | The type of the fourth verb. |
T5 | The type of the fifth verb. |
T6 | The type of the sixth verb. |
parser | A CommandLine.Parser instance. |
args | A System.String array of command line arguments, normally supplied by application entry point. |
System.ArgumentNullException | Thrown if one or more arguments are null. |
All types must expose a parameterless constructor.
Definition at line 165 of file ParserExtensions.cs.
|
static |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array.
T1 | The type of the first verb. |
T2 | The type of the second verb. |
T3 | The type of the third verb. |
T4 | The type of the fourth verb. |
T5 | The type of the fifth verb. |
T6 | The type of the sixth verb. |
T7 | The type of the seventh verb. |
parser | A CommandLine.Parser instance. |
args | A System.String array of command line arguments, normally supplied by application entry point. |
System.ArgumentNullException | Thrown if one or more arguments are null. |
All types must expose a parameterless constructor.
Definition at line 202 of file ParserExtensions.cs.
|
static |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array.
T1 | The type of the first verb. |
T2 | The type of the second verb. |
T3 | The type of the third verb. |
T4 | The type of the fourth verb. |
T5 | The type of the fifth verb. |
T6 | The type of the sixth verb. |
T7 | The type of the seventh verb. |
T8 | The type of the eighth verb. |
parser | A CommandLine.Parser instance. |
args | A System.String array of command line arguments, normally supplied by application entry point. |
System.ArgumentNullException | Thrown if one or more arguments are null. |
All types must expose a parameterless constructor.
Definition at line 248 of file ParserExtensions.cs.
|
static |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array.
T1 | The type of the first verb. |
T2 | The type of the second verb. |
T3 | The type of the third verb. |
T4 | The type of the fourth verb. |
T5 | The type of the fifth verb. |
T6 | The type of the sixth verb. |
T7 | The type of the seventh verb. |
T8 | The type of the eighth verb. |
T9 | The type of the ninth verb. |
parser | A CommandLine.Parser instance. |
args | A System.String array of command line arguments, normally supplied by application entry point. |
System.ArgumentNullException | Thrown if one or more arguments are null. |
All types must expose a parameterless constructor.
Definition at line 296 of file ParserExtensions.cs.
|
static |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array.
T1 | The type of the first verb. |
T2 | The type of the second verb. |
T3 | The type of the third verb. |
T4 | The type of the fourth verb. |
T5 | The type of the fifth verb. |
T6 | The type of the sixth verb. |
T7 | The type of the seventh verb. |
T8 | The type of the eighth verb. |
T9 | The type of the ninth verb. |
T10 | The type of the tenth verb. |
parser | A CommandLine.Parser instance. |
args | A System.String array of command line arguments, normally supplied by application entry point. |
System.ArgumentNullException | Thrown if one or more arguments are null. |
All types must expose a parameterless constructor.
Definition at line 346 of file ParserExtensions.cs.
|
static |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array.
T1 | The type of the first verb. |
T2 | The type of the second verb. |
T3 | The type of the third verb. |
T4 | The type of the fourth verb. |
T5 | The type of the fifth verb. |
T6 | The type of the sixth verb. |
T7 | The type of the seventh verb. |
T8 | The type of the eighth verb. |
T9 | The type of the ninth verb. |
T10 | The type of the tenth verb. |
T11 | The type of the eleventh verb. |
parser | A CommandLine.Parser instance. |
args | A System.String array of command line arguments, normally supplied by application entry point. |
System.ArgumentNullException | Thrown if one or more arguments are null. |
All types must expose a parameterless constructor.
Definition at line 398 of file ParserExtensions.cs.
|
static |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array.
T1 | The type of the first verb. |
T2 | The type of the second verb. |
T3 | The type of the third verb. |
T4 | The type of the fourth verb. |
T5 | The type of the fifth verb. |
T6 | The type of the sixth verb. |
T7 | The type of the seventh verb. |
T8 | The type of the eighth verb. |
T9 | The type of the ninth verb. |
T10 | The type of the tenth verb. |
T11 | The type of the eleventh verb. |
T12 | The type of the twelfth verb. |
parser | A CommandLine.Parser instance. |
args | A System.String array of command line arguments, normally supplied by application entry point. |
System.ArgumentNullException | Thrown if one or more arguments are null. |
All types must expose a parameterless constructor.
Definition at line 452 of file ParserExtensions.cs.
|
static |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array.
T1 | The type of the first verb. |
T2 | The type of the second verb. |
T3 | The type of the third verb. |
T4 | The type of the fourth verb. |
T5 | The type of the fifth verb. |
T6 | The type of the sixth verb. |
T7 | The type of the seventh verb. |
T8 | The type of the eighth verb. |
T9 | The type of the ninth verb. |
T10 | The type of the tenth verb. |
T11 | The type of the eleventh verb. |
T12 | The type of the twelfth verb. |
T13 | The type of the thirteenth verb. |
parser | A CommandLine.Parser instance. |
args | A System.String array of command line arguments, normally supplied by application entry point. |
System.ArgumentNullException | Thrown if one or more arguments are null. |
All types must expose a parameterless constructor.
Definition at line 508 of file ParserExtensions.cs.
|
static |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array.
T1 | The type of the first verb. |
T2 | The type of the second verb. |
T3 | The type of the third verb. |
T4 | The type of the fourth verb. |
T5 | The type of the fifth verb. |
T6 | The type of the sixth verb. |
T7 | The type of the seventh verb. |
T8 | The type of the eighth verb. |
T9 | The type of the ninth verb. |
T10 | The type of the tenth verb. |
T11 | The type of the eleventh verb. |
T12 | The type of the twelfth verb. |
T13 | The type of the thirteenth verb. |
T14 | The type of the fourteenth verb. |
parser | A CommandLine.Parser instance. |
args | A System.String array of command line arguments, normally supplied by application entry point. |
System.ArgumentNullException | Thrown if one or more arguments are null. |
All types must expose a parameterless constructor.
Definition at line 566 of file ParserExtensions.cs.
|
static |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array.
T1 | The type of the first verb. |
T2 | The type of the second verb. |
T3 | The type of the third verb. |
T4 | The type of the fourth verb. |
T5 | The type of the fifth verb. |
T6 | The type of the sixth verb. |
T7 | The type of the seventh verb. |
T8 | The type of the eighth verb. |
T9 | The type of the ninth verb. |
T10 | The type of the tenth verb. |
T11 | The type of the eleventh verb. |
T12 | The type of the twelfth verb. |
T13 | The type of the thirteenth verb. |
T14 | The type of the fourteenth verb. |
T15 | The type of the fifteenth verb. |
parser | A CommandLine.Parser instance. |
args | A System.String array of command line arguments, normally supplied by application entry point. |
System.ArgumentNullException | Thrown if one or more arguments are null. |
All types must expose a parameterless constructor.
Definition at line 626 of file ParserExtensions.cs.
|
static |
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments. Grammar rules are defined decorating public properties with appropriate attributes. The CommandLine.VerbAttribute must be applied to types in the array.
T1 | The type of the first verb. |
T2 | The type of the second verb. |
T3 | The type of the third verb. |
T4 | The type of the fourth verb. |
T5 | The type of the fifth verb. |
T6 | The type of the sixth verb. |
T7 | The type of the seventh verb. |
T8 | The type of the eighth verb. |
T9 | The type of the ninth verb. |
T10 | The type of the tenth verb. |
T11 | The type of the eleventh verb. |
T12 | The type of the twelfth verb. |
T13 | The type of the thirteenth verb. |
T14 | The type of the fourteenth verb. |
T15 | The type of the fifteenth verb. |
T16 | The type of the sixteenth verb. |
parser | A CommandLine.Parser instance. |
args | A System.String array of command line arguments, normally supplied by application entry point. |
System.ArgumentNullException | Thrown if one or more arguments are null. |
All types must expose a parameterless constructor.
Definition at line 687 of file ParserExtensions.cs.