Partager via


Parser Constructeurs

Définition

Surcharges

Parser()

Initialise une nouvelle instance de la classe à l’aide Parser de la valeur par défaut RootCommand.

Parser(Command)

Initialise une nouvelle instance de la classe à l’aide Parser de la commande spécifiée.

Parser(CommandLineConfiguration)

Initialise une nouvelle instance de la classe à l’aide Parser de la configuration spécifiée.

Parser()

Initialise une nouvelle instance de la classe à l’aide Parser de la valeur par défaut RootCommand.

public:
 Parser();
public Parser ();
Public Sub New ()

S’applique à

Parser(Command)

Initialise une nouvelle instance de la classe à l’aide Parser de la commande spécifiée.

public:
 Parser(System::CommandLine::Command ^ command);
public Parser (System.CommandLine.Command command);
new System.CommandLine.Parsing.Parser : System.CommandLine.Command -> System.CommandLine.Parsing.Parser
Public Sub New (command As Command)

Paramètres

command
Command

Commande racine de l’analyseur.

S’applique à

Parser(CommandLineConfiguration)

Initialise une nouvelle instance de la classe à l’aide Parser de la configuration spécifiée.

public:
 Parser(System::CommandLine::CommandLineConfiguration ^ configuration);
public Parser (System.CommandLine.CommandLineConfiguration configuration);
new System.CommandLine.Parsing.Parser : System.CommandLine.CommandLineConfiguration -> System.CommandLine.Parsing.Parser
Public Sub New (configuration As CommandLineConfiguration)

Paramètres

configuration
CommandLineConfiguration

Configuration sur laquelle la grammaire et les comportements de l’analyseur sont basés.

Exceptions

S’applique à