OptionExtensions.AddCompletions 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
AddCompletions<TOption>(TOption, CompletionDelegate) |
옵션에 대한 완료를 추가합니다. |
AddCompletions<TOption>(TOption, Func<CompletionContext,IEnumerable<String>>) |
옵션에 대한 완료를 추가합니다. |
AddCompletions<TOption>(TOption, String[]) |
옵션에 대한 완료를 추가합니다. |
AddCompletions<TOption>(TOption, CompletionDelegate)
옵션에 대한 완료를 추가합니다.
public:
generic <typename TOption>
where TOption : System::CommandLine::Option[System::Runtime::CompilerServices::Extension]
static TOption AddCompletions(TOption option, System::CommandLine::Completions::CompletionDelegate ^ complete);
public static TOption AddCompletions<TOption> (this TOption option, System.CommandLine.Completions.CompletionDelegate complete) where TOption : System.CommandLine.Option;
static member AddCompletions : 'Option * System.CommandLine.Completions.CompletionDelegate -> 'Option (requires 'Option :> System.CommandLine.Option)
<Extension()>
Public Function AddCompletions(Of TOption As Option) (option As TOption, complete As CompletionDelegate) As TOption
형식 매개 변수
- TOption
옵션 형식입니다.
매개 변수
- option
- TOption
완료를 추가할 옵션입니다.
- complete
- CompletionDelegate
CompletionDelegate 완료를 제공하기 위해 호출되는 입니다.
반환
TOption
확장 중인 옵션입니다.
적용 대상
AddCompletions<TOption>(TOption, Func<CompletionContext,IEnumerable<String>>)
옵션에 대한 완료를 추가합니다.
public:
generic <typename TOption>
where TOption : System::CommandLine::Option[System::Runtime::CompilerServices::Extension]
static TOption AddCompletions(TOption option, Func<System::CommandLine::Completions::CompletionContext ^, System::Collections::Generic::IEnumerable<System::String ^> ^> ^ complete);
public static TOption AddCompletions<TOption> (this TOption option, Func<System.CommandLine.Completions.CompletionContext,System.Collections.Generic.IEnumerable<string>> complete) where TOption : System.CommandLine.Option;
static member AddCompletions : 'Option * Func<System.CommandLine.Completions.CompletionContext, seq<string>> -> 'Option (requires 'Option :> System.CommandLine.Option)
<Extension()>
Public Function AddCompletions(Of TOption As Option) (option As TOption, complete As Func(Of CompletionContext, IEnumerable(Of String))) As TOption
형식 매개 변수
- TOption
옵션 형식입니다.
매개 변수
- option
- TOption
완료를 추가할 옵션입니다.
- complete
- Func<CompletionContext,IEnumerable<String>>
CompletionDelegate 완료를 제공하기 위해 호출되는 입니다.
반환
TOption
확장 중인 옵션입니다.
적용 대상
AddCompletions<TOption>(TOption, String[])
옵션에 대한 완료를 추가합니다.
public:
generic <typename TOption>
where TOption : System::CommandLine::Option[System::Runtime::CompilerServices::Extension]
static TOption AddCompletions(TOption option, ... cli::array <System::String ^> ^ values);
public static TOption AddCompletions<TOption> (this TOption option, params string[] values) where TOption : System.CommandLine.Option;
static member AddCompletions : 'Option * string[] -> 'Option (requires 'Option :> System.CommandLine.Option)
<Extension()>
Public Function AddCompletions(Of TOption As Option) (option As TOption, ParamArray values As String()) As TOption
형식 매개 변수
- TOption
Option의 형식입니다.
매개 변수
- option
- TOption
완료를 추가할 옵션입니다.
- values
- String[]
추가할 완료입니다.
반환
TOption
확장 중인 옵션입니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET