PowerArgs.TabCompletion.TabCompletion C# (CSharp) Method

TabCompletion() public method

Creates a new tab completion hook given a custom tab completion implementation.
public TabCompletion ( Type completionSource, string indicator = "" ) : System
completionSource System.Type A type that implements ITabCompletionSource such as SimpleTabCompletionSource
indicator string When this indicator is the only argument the user specifies that triggers the hook to enhance the command prompt. By default, the indicator is the empty string.
return System
        public TabCompletion(Type completionSource, string indicator = "")
            : this(indicator)
        {
            this.CompletionSourceType = completionSource;
        }

Same methods

TabCompletion::TabCompletion ( string indicator = "" ) : System