/tags/beta-1.0.2/Server/Handlers/RequireAccess.cs

# · C# · 23 lines · 12 code · 3 blank · 8 comment · 0 complexity · bd02e5e84f3d549d1ae6af9d35350d9e 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. using System;
  10. namespace Web.Management.PHP.Handlers
  11. {
  12. internal enum RequireAccess
  13. {
  14. None = 0,
  15. Read = 1,
  16. Write = 2,
  17. Script = 3,
  18. Execute = 4
  19. }
  20. }