Alquimiaware.NuGetUnity.ListCommand.Execute C# (CSharp) Méthode

Execute() public méthode

public Execute ( string searchTerms ) : string
searchTerms string
Résultat 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());
        }