Alquimiaware.NuGetUnity.ListCommand.Execute C# (CSharp) 메소드

Execute() 공개 메소드

public Execute ( string searchTerms ) : string
searchTerms string
리턴 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());
        }