PageRenderTime 44ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/beta-1.0.2/Server/FastCgi/StderrMode.cs

#
C# | 22 lines | 11 code | 3 blank | 8 comment | 0 complexity | a047f0a651450cc1bde2ea050e761dfb MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  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. using System;
  10. namespace Web.Management.PHP.FastCgi
  11. {
  12. internal enum StderrMode
  13. {
  14. ReturnStdErrIn500 = 0,
  15. ReturnGeneric500 = 1,
  16. IgnoreAndReturn200 = 2,
  17. TerminateProcess = 3
  18. }
  19. }