Alquimiaware.NuGetUnity.ListCommand.Execute C# (CSharp) Method

Execute() public method

public Execute ( string searchTerms ) : string
searchTerms string
return string
        public string Execute(string searchTerms)
        {
            var args = new ListCommandArgs(this.Sources);
            args.SearchTerms = searchTerms;
            args.ShowAllVersions = this.ShowAllVersions;
            args.ShowPrerelase = this.ShowPrerelease;

            return CallNuGet(args.ToString());
        }