CommandLineBuilderExtensions.EnablePosixBundling Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Permet à l’analyseur de reconnaître et de développer les options groupées de style POSIX.
public static System.CommandLine.Builder.CommandLineBuilder EnablePosixBundling (this System.CommandLine.Builder.CommandLineBuilder builder, bool value = true);
static member EnablePosixBundling : System.CommandLine.Builder.CommandLineBuilder * bool -> System.CommandLine.Builder.CommandLineBuilder
<Extension()>
Public Function EnablePosixBundling (builder As CommandLineBuilder, Optional value As Boolean = true) As CommandLineBuilder
Paramètres
- builder
- CommandLineBuilder
Générateur de ligne de commande.
- value
- Boolean
Si la valeur true
est définie sur , les offres groupées POSIX sont analysées. ; sinon, false
.
Retours
La même instance de CommandLineBuilder.
Remarques
Les conventions POSIX recommandent que les options à caractère unique soient autorisées à être spécifiées ensemble après un préfixe unique -
. Quand EnablePosixBundling(CommandLineBuilder, Boolean) est défini sur true
, les lignes de commande suivantes sont équivalentes :
> myapp -a -b -c
> myapp -abc
Si un argument est fourni après un regroupement d’options, il s’applique à la dernière option du regroupement. Lorsque EnablePosixBundling(CommandLineBuilder, Boolean) est défini sur true
, toutes les lignes de commande suivantes sont équivalentes :
> myapp -a -b -c arg
> myapp -abc arg
> myapp -abcarg