Command.Add Méthode

Définition

Surcharges

Add(Argument)

Ajoute un Argument à la commande .

Add(Command)

Ajoute une sous-commande à la commande .

Add(Option)

Ajoute un Option à la commande .

Add(Argument)

Ajoute un Argument à la commande .

public:
 void Add(System::CommandLine::Argument ^ argument);
public void Add (System.CommandLine.Argument argument);
member this.Add : System.CommandLine.Argument -> unit
Public Sub Add (argument As Argument)

Paramètres

argument
Argument

Argument à ajouter à la commande.

S’applique à

Add(Command)

Ajoute une sous-commande à la commande .

public:
 void Add(System::CommandLine::Command ^ command);
public void Add (System.CommandLine.Command command);
member this.Add : System.CommandLine.Command -> unit
Public Sub Add (command As Command)

Paramètres

command
Command

Sous-commande à ajouter à la commande.

Remarques

Les commandes peuvent être imbriquées à une profondeur arbitraire.

S’applique à

Add(Option)

Ajoute un Option à la commande .

public:
 void Add(System::CommandLine::Option ^ option);
public void Add (System.CommandLine.Option option);
member this.Add : System.CommandLine.Option -> unit
Public Sub Add (option As Option)

Paramètres

option
Option

Option à ajouter à la commande.

S’applique à