CommandExtensions.InvokeAsync 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
InvokeAsync(Command, String, IConsole) |
명령을 구문 분석하고 호출합니다. |
InvokeAsync(Command, String[], IConsole) |
명령을 구문 분석하고 호출합니다. |
InvokeAsync(Command, String, IConsole)
명령을 구문 분석하고 호출합니다.
public static System.Threading.Tasks.Task<int> InvokeAsync (this System.CommandLine.Command command, string commandLine, System.CommandLine.IConsole? console = default);
static member InvokeAsync : System.CommandLine.Command * string * System.CommandLine.IConsole -> System.Threading.Tasks.Task<int>
<Extension()>
Public Function InvokeAsync (command As Command, commandLine As String, Optional console As IConsole = Nothing) As Task(Of Integer)
매개 변수
- command
- Command
호출할 명령입니다.
- commandLine
- String
구문 분석할 명령줄입니다.
- console
- IConsole
호출 중에 출력이 기록되는 콘솔입니다.
반환
호출에 대한 종료 코드입니다.
설명
명령줄 문자열 입력은 명령줄에 전달된 것처럼 토큰으로 분할됩니다.
이 메서드는 메서드의 동기 대응에서 throw할 수 있는 모든 비사용 예외를 반환하는 작업에 저장됩니다. 예외가 반환된 작업에 저장되면 작업이 대기될 때 해당 예외가 throw됩니다. 와 같은 ArgumentException사용 예외는 여전히 동기적으로 throw됩니다. 저장된 예외는 에서 throw Invoke(Command, String, IConsole)된 예외를 참조하세요.
적용 대상
InvokeAsync(Command, String[], IConsole)
명령을 구문 분석하고 호출합니다.
public static System.Threading.Tasks.Task<int> InvokeAsync (this System.CommandLine.Command command, string[] args, System.CommandLine.IConsole? console = default);
static member InvokeAsync : System.CommandLine.Command * string[] * System.CommandLine.IConsole -> System.Threading.Tasks.Task<int>
<Extension()>
Public Function InvokeAsync (command As Command, args As String(), Optional console As IConsole = Nothing) As Task(Of Integer)
매개 변수
- command
- Command
호출할 명령입니다.
- args
- String[]
구문 분석할 인수입니다.
- console
- IConsole
호출 중에 출력이 기록되는 콘솔입니다.
반환
호출에 대한 종료 코드입니다.
설명
이 메서드는 메서드의 동기 대응에서 throw할 수 있는 모든 비사용 예외를 반환하는 작업에 저장됩니다. 예외가 반환된 작업에 저장되면 작업이 대기될 때 해당 예외가 throw됩니다. 와 같은 ArgumentException사용 예외는 여전히 동기적으로 throw됩니다. 저장된 예외는 에서 throw Invoke(Command, String[], IConsole)된 예외를 참조하세요.
적용 대상
.NET