C# Класс CommandLine.CommandLineParserSettings

Specifies a set of features to configure a CommandLine.CommandLineParser behavior.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

CommandLineParserSettings() публичный Метод

Initializes a new instance of the CommandLine.CommandLineParserSettings class.
public CommandLineParserSettings ( ) : System.IO
Результат System.IO

CommandLineParserSettings() публичный Метод

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.
Результат System.IO

CommandLineParserSettings() публичный Метод

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.
Результат System.IO

CommandLineParserSettings() публичный Метод

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.
Результат System.IO

CommandLineParserSettings() публичный Метод

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.
Результат System.IO

CommandLineParserSettings() публичный Метод

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.
Результат System.IO