CommandLineBuilderExtensions.AddMiddleware 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.
Surcharges
AddMiddleware(CommandLineBuilder, Action<InvocationContext>, MiddlewareOrder) |
Ajoute un délégué middleware au pipeline d’appel appelé avant l’appel d’un gestionnaire de commandes. |
AddMiddleware(CommandLineBuilder, InvocationMiddleware, MiddlewareOrder) |
Ajoute un délégué middleware au pipeline d’appel appelé avant l’appel d’un gestionnaire de commandes. |
AddMiddleware(CommandLineBuilder, Action<InvocationContext>, MiddlewareOrder)
Ajoute un délégué middleware au pipeline d’appel appelé avant l’appel d’un gestionnaire de commandes.
public static System.CommandLine.Builder.CommandLineBuilder AddMiddleware (this System.CommandLine.Builder.CommandLineBuilder builder, Action<System.CommandLine.Invocation.InvocationContext> onInvoke, System.CommandLine.Invocation.MiddlewareOrder order = System.CommandLine.Invocation.MiddlewareOrder.Default);
static member AddMiddleware : System.CommandLine.Builder.CommandLineBuilder * Action<System.CommandLine.Invocation.InvocationContext> * System.CommandLine.Invocation.MiddlewareOrder -> System.CommandLine.Builder.CommandLineBuilder
<Extension()>
Public Function AddMiddleware (builder As CommandLineBuilder, onInvoke As Action(Of InvocationContext), Optional order As MiddlewareOrder = System.CommandLine.Invocation.MiddlewareOrder.Default) As CommandLineBuilder
Paramètres
- builder
- CommandLineBuilder
Générateur de ligne de commande.
- onInvoke
- Action<InvocationContext>
Délégué qui sera appelé avant un appel à un gestionnaire de commandes.
- order
- MiddlewareOrder
Valeur indiquant l’ordre dans lequel le délégué ajouté sera appelé par rapport aux autres dans le pipeline.
Retours
La même instance de CommandLineBuilder.
S’applique à
AddMiddleware(CommandLineBuilder, InvocationMiddleware, MiddlewareOrder)
Ajoute un délégué middleware au pipeline d’appel appelé avant l’appel d’un gestionnaire de commandes.
public static System.CommandLine.Builder.CommandLineBuilder AddMiddleware (this System.CommandLine.Builder.CommandLineBuilder builder, System.CommandLine.Invocation.InvocationMiddleware middleware, System.CommandLine.Invocation.MiddlewareOrder order = System.CommandLine.Invocation.MiddlewareOrder.Default);
static member AddMiddleware : System.CommandLine.Builder.CommandLineBuilder * System.CommandLine.Invocation.InvocationMiddleware * System.CommandLine.Invocation.MiddlewareOrder -> System.CommandLine.Builder.CommandLineBuilder
<Extension()>
Public Function AddMiddleware (builder As CommandLineBuilder, middleware As InvocationMiddleware, Optional order As MiddlewareOrder = System.CommandLine.Invocation.MiddlewareOrder.Default) As CommandLineBuilder
Paramètres
- builder
- CommandLineBuilder
Générateur de ligne de commande.
- middleware
- InvocationMiddleware
Délégué qui sera appelé avant un appel à un gestionnaire de commandes.
- order
- MiddlewareOrder
Valeur indiquant l’ordre dans lequel le délégué ajouté sera appelé par rapport aux autres dans le pipeline.
Retours
La même instance de CommandLineBuilder.