CommandLineBuilderExtensions.EnablePosixBundling 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
可讓剖析器辨識並展開POSIX樣式的配套選項。
public static System.CommandLine.Builder.CommandLineBuilder EnablePosixBundling (this System.CommandLine.Builder.CommandLineBuilder builder, bool value = true);
static member EnablePosixBundling : System.CommandLine.Builder.CommandLineBuilder * bool -> System.CommandLine.Builder.CommandLineBuilder
<Extension()>
Public Function EnablePosixBundling (builder As CommandLineBuilder, Optional value As Boolean = true) As CommandLineBuilder
參數
- builder
- CommandLineBuilder
命令行產生器。
- value
- Boolean
如果設定為 true
,則會剖析 POSIX 套件組合。 ;否則為 false
。
傳回
的相同實例 CommandLineBuilder。
備註
POSIX 慣例建議在單一前置詞之後一起指定單 -
一字元選項。 當 設定為 true
時EnablePosixBundling(CommandLineBuilder, Boolean),下列命令列是相等的:
> myapp -a -b -c
> myapp -abc
在選項統合後所提供的引數,會套用至統合中的最後一個選項。 當 設定為 true
時EnablePosixBundling(CommandLineBuilder, Boolean),下列所有命令列都相等:
> myapp -a -b -c arg
> myapp -abc arg
> myapp -abcarg