C# Class CommandLine.CommandLineParserSettings

Specifies a set of features to configure a CommandLine.CommandLineParser behavior.
Show file Open project: Vaa3D/vaa3d_tools Class Usage Examples

Public Methods

Method Description
CommandLineParserSettings ( ) : System.IO

Initializes a new instance of the CommandLine.CommandLineParserSettings class.

CommandLineParserSettings ( TextWriter helpWriter ) : System.IO

Initializes a new instance of the CommandLine.CommandLineParserSettings class, setting the System.IO.TextWriter used for help method output.

CommandLineParserSettings ( bool caseSensitive ) : System.IO

Initializes a new instance of the CommandLine.CommandLineParserSettings class, setting the case comparison behavior.

CommandLineParserSettings ( bool caseSensitive, TextWriter helpWriter ) : System.IO

Initializes a new instance of the CommandLine.CommandLineParserSettings class, setting case comparison and help output options.

CommandLineParserSettings ( bool caseSensitive, bool mutuallyExclusive ) : System.IO

Initializes a new instance of the CommandLine.CommandLineParserSettings class, setting case comparison and mutually exclusive behaviors.

CommandLineParserSettings ( bool caseSensitive, bool mutuallyExclusive, TextWriter helpWriter ) : System.IO

Initializes a new instance of the CommandLine.CommandLineParserSettings class, setting case comparison, mutually exclusive behavior and help output option.

Method Details

CommandLineParserSettings() public method

Initializes a new instance of the CommandLine.CommandLineParserSettings class.
public CommandLineParserSettings ( ) : System.IO
return System.IO

CommandLineParserSettings() public method

Initializes a new instance of the CommandLine.CommandLineParserSettings class, setting the System.IO.TextWriter used for help method output.
public CommandLineParserSettings ( TextWriter helpWriter ) : System.IO
helpWriter System.IO.TextWriter Any instance derived from , /// default . Setting this argument to null, will disable help screen.
return System.IO

CommandLineParserSettings() public method

Initializes a new instance of the CommandLine.CommandLineParserSettings class, setting the case comparison behavior.
public CommandLineParserSettings ( bool caseSensitive ) : System.IO
caseSensitive bool If set to true, parsing will be case sensitive.
return System.IO

CommandLineParserSettings() public method

Initializes a new instance of the CommandLine.CommandLineParserSettings class, setting case comparison and help output options.
public CommandLineParserSettings ( bool caseSensitive, TextWriter helpWriter ) : System.IO
caseSensitive bool If set to true, parsing will be case sensitive.
helpWriter System.IO.TextWriter Any instance derived from , /// default . Setting this argument to null, will disable help screen.
return System.IO

CommandLineParserSettings() public method

Initializes a new instance of the CommandLine.CommandLineParserSettings class, setting case comparison and mutually exclusive behaviors.
public CommandLineParserSettings ( bool caseSensitive, bool mutuallyExclusive ) : System.IO
caseSensitive bool If set to true, parsing will be case sensitive.
mutuallyExclusive bool If set to true, enable mutually exclusive behavior.
return System.IO

CommandLineParserSettings() public method

Initializes a new instance of the CommandLine.CommandLineParserSettings class, setting case comparison, mutually exclusive behavior and help output option.
public CommandLineParserSettings ( bool caseSensitive, bool mutuallyExclusive, TextWriter helpWriter ) : System.IO
caseSensitive bool If set to true, parsing will be case sensitive.
mutuallyExclusive bool If set to true, enable mutually exclusive behavior.
helpWriter System.IO.TextWriter Any instance derived from , /// default . Setting this argument to null, will disable help screen.
return System.IO