CommandLineParserT(ArgumentProvider, ParseOptions) Constructor

Initializes a new instance of the CommandLineParser class using the specified argument provider and options.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.2.0+a4d3631e4dcc0970081ed435288efdebc1325f83
C#
public CommandLineParser(
	ArgumentProvider provider,
	ParseOptions? options = null
)

Parameters

provider  ArgumentProvider
The ArgumentProvider that defines the command line arguments.
options  ParseOptions  (Optional)
The options that control parsing behavior, or to use the default options.

Remarks

This constructor supports source generation, and should not typically be used directly by application code.

If the options parameter is not , the instance passed in will be modified to reflect the options from the arguments class's ParseOptionsAttribute attribute, if it has one.

Certain properties of the ParseOptions class can be changed after the CommandLineParser class has been constructed, and still affect the parsing behavior. See the Options property for details.

Exceptions

NotSupportedException The CommandLineParser cannot use type T as the command line arguments type, because it violates one of the rules concerning argument names or positions, or has an argument type that cannot be parsed.
ArgumentException The ArgumentProviderArgumentsType property for the provider if a different type than T.

See Also