다음을 통해 공유


ParserExtensions.InvokeAsync 메서드

정의

오버로드

InvokeAsync(Parser, String, IConsole)

명령줄 문자열 값을 구문 분석하고 표시된 명령에 대한 처리기를 호출합니다.

InvokeAsync(Parser, String[], IConsole)

명령줄 문자열 배열을 구문 분석하고 표시된 명령에 대한 처리기를 호출합니다.

InvokeAsync(Parser, String, IConsole)

명령줄 문자열 값을 구문 분석하고 표시된 명령에 대한 처리기를 호출합니다.

public static System.Threading.Tasks.Task<int> InvokeAsync (this System.CommandLine.Parsing.Parser parser, string commandLine, System.CommandLine.IConsole? console = default);
static member InvokeAsync : System.CommandLine.Parsing.Parser * string * System.CommandLine.IConsole -> System.Threading.Tasks.Task<int>
<Extension()>
Public Function InvokeAsync (parser As Parser, commandLine As String, Optional console As IConsole = Nothing) As Task(Of Integer)

매개 변수

parser
Parser
commandLine
String
console
IConsole

반환

호출에 대한 종료 코드입니다.

설명

명령줄 문자열 입력은 명령줄에 전달된 것처럼 토큰으로 분할됩니다.

이 메서드는 메서드의 동기 대응에서 throw할 수 있는 모든 비사용 예외를 반환하는 태스크에 저장됩니다. 예외가 반환된 작업에 저장되면 작업이 대기될 때 해당 예외가 throw됩니다. 와 같은 ArgumentException사용 예외는 여전히 동기적으로 throw됩니다. 저장된 예외는 에서 throw Invoke(Parser, String, IConsole)된 예외를 참조하세요.

적용 대상

InvokeAsync(Parser, String[], IConsole)

명령줄 문자열 배열을 구문 분석하고 표시된 명령에 대한 처리기를 호출합니다.

public static System.Threading.Tasks.Task<int> InvokeAsync (this System.CommandLine.Parsing.Parser parser, string[] args, System.CommandLine.IConsole? console = default);
static member InvokeAsync : System.CommandLine.Parsing.Parser * string[] * System.CommandLine.IConsole -> System.Threading.Tasks.Task<int>
<Extension()>
Public Function InvokeAsync (parser As Parser, args As String(), Optional console As IConsole = Nothing) As Task(Of Integer)

매개 변수

parser
Parser
args
String[]
console
IConsole

반환

호출에 대한 종료 코드입니다.

설명

이 메서드는 메서드의 동기 대응에서 throw할 수 있는 모든 비사용 예외를 반환하는 태스크에 저장됩니다. 예외가 반환된 작업에 저장되면 작업이 대기될 때 해당 예외가 throw됩니다. 와 같은 ArgumentException사용 예외는 여전히 동기적으로 throw됩니다. 저장된 예외는 에서 throw Invoke(Parser, String[], IConsole)된 예외를 참조하세요.

적용 대상