ChocoPM.Services.LocalChocolateyService.UninstallPackageAsync C# (CSharp) 메소드

UninstallPackageAsync() 공개 메소드

Uninstall the specified package.
public UninstallPackageAsync ( string id, string version ) : Task
id string The Id of the package to be removed.
version string The Version string of the package to be removed.
리턴 Task
        public async Task<bool> UninstallPackageAsync(string id, string version)
        {
            return await ExecutePackageCommand("chocolatey uninstall " + id + " -version " + version);
        }