-
Notifications
You must be signed in to change notification settings - Fork 189
InstallationStatus
Garrett Serack edited this page May 1, 2014
·
2 revisions
public enum InstallationStatus {
Available = 0,
Installed = 1,
InstallationSuccessful = 2,
UninstallationSuccessful = 3,
}
The installation state of a given package.
Value | Purpose |
---|---|
Available |
the package is potentially available to install |
Installed |
the package is currently installed |
InstallationSuccessful |
the package was installed successfully |
UninstallationSuccessful |
the package was uninstalled successfully |