8dcb0783a69e9e6fa44ee51d60efdbb8c43d666b
[mono.git] / mcs / class / System.Web / System.Web / ProcessShutdownReason.cs
1 //
2 // System.Web.ProcessShutdownReason.cs
3 //
4 // Author:
5 //   Bob Smith <bob@thestuff.net>
6 //
7 // (C) Bob Smith
8 //
9
10 namespace System.Web {
11         [Serializable]
12         public enum ProcessShutdownReason {
13                 None,
14                 Unexpected,
15                 RequestsLimit,
16                 RequestQueueLimit,
17                 Timeout,
18                 IdleTimeout,
19                 MemoryLimitExceeded,
20                 PingFailed,
21                 DeadlockSuspected
22    }
23 }