2001:11:12 Gaurav Vaish <gvaish@iitk.ac.in>
[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 {
12         public enum ProcessShutdownReason
13         {
14                 IdleTimeout,
15                 MemoryLimitExceeded,
16                 None,
17                 PingFailed,
18                 RequestQueueLimit,
19                 RequestsLimit,
20                 Timeout,
21                 Unexpected
22         }
23 }