/tags/stable-1.1.1/Server/FastCgi/StderrMode.cs

# · C# · 20 lines · 10 code · 2 blank · 8 comment · 0 complexity · 83f497008b442d8082eb9b943683f7b4 MD5 · raw file

  1. //-----------------------------------------------------------------------
  2. // <copyright>
  3. // Copyright (C) Ruslan Yakushev for the PHP Manager for IIS project.
  4. //
  5. // This file is subject to the terms and conditions of the Microsoft Public License (MS-PL).
  6. // See http://www.microsoft.com/opensource/licenses.mspx#Ms-PL for more details.
  7. // </copyright>
  8. //-----------------------------------------------------------------------
  9. namespace Web.Management.PHP.FastCgi
  10. {
  11. internal enum StderrMode
  12. {
  13. ReturnStdErrIn500 = 0,
  14. ReturnGeneric500 = 1,
  15. IgnoreAndReturn200 = 2,
  16. TerminateProcess = 3
  17. }
  18. }