using System; namespace Developpez.Dotnet.System.Providers.Windows { /// /// Infrastructure (Interop) /// [Flags] internal enum ShutdownMethod : uint { LogOff = 0x00, ShutDown = 0x01, Reboot = 0x02, Force = 0x04, PowerOff = 0x08, ForceIfHung = 0x10 } }