namespace Developpez.Dotnet.System { /// /// Raison de redémarrage /// public enum RebootReason { /// /// Aucune information /// None, /// /// Le système doit être redémarré suite à l'installation d'une application /// InstallApplication, /// /// Le système doit être redémarré suite à la désinstallation d'une application /// UnInstallApplication, /// /// Le système doit être redémarré suite à la mise à jour d'une application /// UpdateApplication } }