/tags/stable-1.1.1/Server/FastCgi/StderrMode.cs
# · C# · 20 lines · 10 code · 2 blank · 8 comment · 0 complexity · 83f497008b442d8082eb9b943683f7b4 MD5 · raw file
- //-----------------------------------------------------------------------
- // <copyright>
- // Copyright (C) Ruslan Yakushev for the PHP Manager for IIS project.
- //
- // This file is subject to the terms and conditions of the Microsoft Public License (MS-PL).
- // See http://www.microsoft.com/opensource/licenses.mspx#Ms-PL for more details.
- // </copyright>
- //-----------------------------------------------------------------------
-
- namespace Web.Management.PHP.FastCgi
- {
-
- internal enum StderrMode
- {
- ReturnStdErrIn500 = 0,
- ReturnGeneric500 = 1,
- IgnoreAndReturn200 = 2,
- TerminateProcess = 3
- }
- }