/trunk/Client/Config/PHPRegistrationType.cs

# · C# · 21 lines · 11 code · 2 blank · 8 comment · 0 complexity · f5f0f43a54c10f9257053140fc90eb52 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.Config
  10. {
  11. public enum PHPRegistrationType
  12. {
  13. FastCgi,
  14. Cgi,
  15. Isapi,
  16. None,
  17. NoneNoFastCgi
  18. }
  19. }