다음을 통해 공유


CommandLineBuilderExtensions.AddMiddleware 메서드

정의

오버로드

AddMiddleware(CommandLineBuilder, Action<InvocationContext>, MiddlewareOrder)

명령 처리기가 호출되기 전에 호출 파이프라인에 미들웨어 대리자를 추가합니다.

AddMiddleware(CommandLineBuilder, InvocationMiddleware, MiddlewareOrder)

명령 처리기가 호출되기 전에 호출 파이프라인에 미들웨어 대리자를 추가합니다.

AddMiddleware(CommandLineBuilder, Action<InvocationContext>, MiddlewareOrder)

명령 처리기가 호출되기 전에 호출 파이프라인에 미들웨어 대리자를 추가합니다.

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

매개 변수

builder
CommandLineBuilder

명령줄 작성기입니다.

onInvoke
Action<InvocationContext>

명령 처리기를 호출하기 전에 호출될 대리자입니다.

order
MiddlewareOrder

파이프라인의 다른 대리자를 기준으로 추가된 대리자를 호출할 순서를 나타내는 값입니다.

반환

의 동일한 instanceCommandLineBuilder.

적용 대상

AddMiddleware(CommandLineBuilder, InvocationMiddleware, MiddlewareOrder)

명령 처리기가 호출되기 전에 호출 파이프라인에 미들웨어 대리자를 추가합니다.

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

매개 변수

builder
CommandLineBuilder

명령줄 작성기입니다.

middleware
InvocationMiddleware

명령 처리기를 호출하기 전에 호출될 대리자입니다.

order
MiddlewareOrder

파이프라인의 다른 대리자를 기준으로 추가된 대리자를 호출할 순서를 나타내는 값입니다.

반환

의 동일한 instanceCommandLineBuilder.

적용 대상