/tags/stable-1.0.3/Client/Config/PHPRegistrationType.cs

# · C# · 20 lines · 10 code · 2 blank · 8 comment · 0 complexity · e950831964a9a0b68fd70c8dcd023319 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. internal enum PHPRegistrationType
  12. {
  13. FastCgi,
  14. Cgi,
  15. Isapi,
  16. None
  17. }
  18. }