PowerArgs.ContextAssistSearch.CanAssist C# (CSharp) Method

CanAssist() public method

Always returns true. When overrided in a derived class the derived class can provide custom logic to determine whether or not this assist provider can assist.
public CanAssist ( RichCommandLineContext parentContext ) : bool
parentContext RichCommandLineContext context about the parent reader that we may be assisting
return bool
        public virtual bool CanAssist(RichCommandLineContext parentContext)
        {
            return true;
        }