CommandLineParser<T>.ParseWithErrorHandling(String[]) Method

Parses the specified command line arguments and displays error messages and usage help if required.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.0.0+bb7ed9a8fdfd1cb21824750a8cf508863ad15086
C#
public T ParseWithErrorHandling(
	string[] args
)

Parameters

args  String[]
The command line arguments.

Return Value

T
An instance of the type specified by the ArgumentsType property, or null if an error occurred, or argument parsing was canceled by the CommandLineArgumentAttribute.CancelParsing property or a method argument that returned CancelMode.Abort or false.

Remarks

If an error occurs or parsing is canceled, it prints errors to the ParseOptions.Error stream, and usage help using the UsageWriter if the HelpRequested property is true. It then returns null.

If the return value is null, check the ParseResult property for more information about whether an error occurred or parsing was canceled.

This method will never throw a CommandLineArgumentException exception.

Exceptions

ArgumentNullExceptionargs is null.

See Also