Udostępnij za pośrednictwem


CommandLineBuilderExtensions.AddMiddleware Metoda

Definicja

Przeciążenia

AddMiddleware(CommandLineBuilder, Action<InvocationContext>, MiddlewareOrder)

Dodaje delegata oprogramowania pośredniczącego do potoku wywołania wywoływanego przed wywołaniem procedury obsługi poleceń.

AddMiddleware(CommandLineBuilder, InvocationMiddleware, MiddlewareOrder)

Dodaje delegata oprogramowania pośredniczącego do potoku wywołania wywoływanego przed wywołaniem procedury obsługi poleceń.

AddMiddleware(CommandLineBuilder, Action<InvocationContext>, MiddlewareOrder)

Dodaje delegata oprogramowania pośredniczącego do potoku wywołania wywoływanego przed wywołaniem procedury obsługi poleceń.

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

Parametry

builder
CommandLineBuilder

Konstruktor wiersza polecenia.

onInvoke
Action<InvocationContext>

Delegat, który zostanie wywołany przed wywołaniem programu obsługi poleceń.

order
MiddlewareOrder

Wartość wskazująca kolejność wywołania dodanego delegata względem innych osób w potoku.

Zwraca

To samo wystąpienie klasy CommandLineBuilder.

Dotyczy

AddMiddleware(CommandLineBuilder, InvocationMiddleware, MiddlewareOrder)

Dodaje delegata oprogramowania pośredniczącego do potoku wywołania wywoływanego przed wywołaniem procedury obsługi poleceń.

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

Parametry

builder
CommandLineBuilder

Konstruktor wiersza polecenia.

middleware
InvocationMiddleware

Delegat, który zostanie wywołany przed wywołaniem programu obsługi poleceń.

order
MiddlewareOrder

Wartość wskazująca kolejność wywołania dodanego delegata względem innych osób w potoku.

Zwraca

To samo wystąpienie klasy CommandLineBuilder.

Dotyczy