Added files: PowerBroadcastStatus.cs, ServiceAccount.cs,
[mono.git] / mcs / class / System.ServiceProcess / System.ServiceProcess / ServiceControllerStatus.cs
1 //
2 // System.ServiceProcess.ServiceControllerStatus
3 //
4 // Author: Cesar Octavio Lopez Nataren (cesar@ciencias.unam.mx)
5 //
6 // (C) 2002, Cesar Octavio Lopez Nataren 
7 //
8
9 namespace System.ServiceProcess
10 {       
11         [Serializable]
12         public enum ServiceControllerStatus {
13                 Stopped = 1,
14                 StartPending = 2,
15                 StopPending = 3,
16                 Running = 4,
17                 ContinuePending = 5,
18                 PausePending = 6,
19                 Paused = 7
20         }
21 }
22