다음을 통해 공유


CommandLineBuilderExtensions.UseHelp 메서드

정의

오버로드

UseHelp(CommandLineBuilder, Nullable<Int32>)

다음 옵션 중 하나가 명령줄에 지정된 경우 도움말을 표시하도록 애플리케이션을 구성합니다.

-h
/h
--help
-?
/?
UseHelp(CommandLineBuilder, String[])

명령줄에서 지정된 옵션 별칭 중 하나를 사용할 때 도움말을 표시하도록 애플리케이션을 구성합니다.

UseHelp(CommandLineBuilder, Action<HelpContext>, Nullable<Int32>)

명령줄에서 지정된 옵션 별칭 중 하나를 사용할 때 도움말을 표시하도록 애플리케이션을 구성합니다.

UseHelp(CommandLineBuilder, Nullable<Int32>)

다음 옵션 중 하나가 명령줄에 지정된 경우 도움말을 표시하도록 애플리케이션을 구성합니다.

-h
/h
--help
-?
/?
public static System.CommandLine.Builder.CommandLineBuilder UseHelp (this System.CommandLine.Builder.CommandLineBuilder builder, int? maxWidth = default);
static member UseHelp : System.CommandLine.Builder.CommandLineBuilder * Nullable<int> -> System.CommandLine.Builder.CommandLineBuilder
<Extension()>
Public Function UseHelp (builder As CommandLineBuilder, Optional maxWidth As Nullable(Of Integer) = Nothing) As CommandLineBuilder

매개 변수

builder
CommandLineBuilder

명령줄 작성기입니다.

maxWidth
Nullable<Int32>

기본 도움말 작성기의 최대 출력 너비입니다.

반환

의 동일한 instance.CommandLineBuilder

적용 대상

UseHelp(CommandLineBuilder, String[])

명령줄에서 지정된 옵션 별칭 중 하나를 사용할 때 도움말을 표시하도록 애플리케이션을 구성합니다.

public:
[System::Runtime::CompilerServices::Extension]
 static System::CommandLine::Builder::CommandLineBuilder ^ UseHelp(System::CommandLine::Builder::CommandLineBuilder ^ builder, ... cli::array <System::String ^> ^ helpAliases);
public static System.CommandLine.Builder.CommandLineBuilder UseHelp (this System.CommandLine.Builder.CommandLineBuilder builder, params string[] helpAliases);
static member UseHelp : System.CommandLine.Builder.CommandLineBuilder * string[] -> System.CommandLine.Builder.CommandLineBuilder
<Extension()>
Public Function UseHelp (builder As CommandLineBuilder, ParamArray helpAliases As String()) As CommandLineBuilder

매개 변수

builder
CommandLineBuilder

명령줄 작성기입니다.

helpAliases
String[]

도움말을 요청하기 위해 명령줄에 지정할 수 있는 별칭 집합입니다.

반환

의 동일한 instance.CommandLineBuilder

설명

지정된 별칭은 기본값을 재정의합니다.

적용 대상

UseHelp(CommandLineBuilder, Action<HelpContext>, Nullable<Int32>)

명령줄에서 지정된 옵션 별칭 중 하나를 사용할 때 도움말을 표시하도록 애플리케이션을 구성합니다.

public static System.CommandLine.Builder.CommandLineBuilder UseHelp (this System.CommandLine.Builder.CommandLineBuilder builder, Action<System.CommandLine.Help.HelpContext> customize, int? maxWidth = default);
static member UseHelp : System.CommandLine.Builder.CommandLineBuilder * Action<System.CommandLine.Help.HelpContext> * Nullable<int> -> System.CommandLine.Builder.CommandLineBuilder
<Extension()>
Public Function UseHelp (builder As CommandLineBuilder, customize As Action(Of HelpContext), Optional maxWidth As Nullable(Of Integer) = Nothing) As CommandLineBuilder

매개 변수

builder
CommandLineBuilder

명령줄 작성기입니다.

customize
Action<HelpContext>

도움말이 요청된 경우 도움말을 사용자 지정하기 위해 호출되는 대리자입니다.

maxWidth
Nullable<Int32>

기본 도움말 작성기의 최대 출력 너비입니다.

반환

의 동일한 instance.CommandLineBuilder

설명

지정된 별칭은 기본값을 재정의합니다.

적용 대상