CommandInfoCreateParser Method

Creates a CommandLineParser instance for the type indicated by the CommandType property.

Definition

Namespace: Ookii.CommandLine.Commands
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
C#
public abstract CommandLineParser CreateParser()

Return Value

CommandLineParser
A CommandLineParser instance for the CommandType.

Remarks

If the UseCustomArgumentParsing property is , the command cannot be created using the CommandLineParser class, and you must use the CreateInstanceWithCustomParsing method or CreateInstanceWithResult(ReadOnlyMemoryString) method instead.

Exceptions

InvalidOperationException The command uses the ICommandWithCustomParsing interface.

See Also