/tags/beta-1.0.2/Server/Handlers/RequireAccess.cs
# · C# · 23 lines · 12 code · 3 blank · 8 comment · 0 complexity · bd02e5e84f3d549d1ae6af9d35350d9e MD5 · raw file
- //-----------------------------------------------------------------------
- // <copyright>
- // Copyright (C) Ruslan Yakushev for the PHP Manager for IIS project.
- //
- // This file is subject to the terms and conditions of the Microsoft Public License (MS-PL).
- // See http://www.microsoft.com/opensource/licenses.mspx#Ms-PL for more details.
- // </copyright>
- //-----------------------------------------------------------------------
-
- using System;
-
- namespace Web.Management.PHP.Handlers
- {
-
- internal enum RequireAccess
- {
- None = 0,
- Read = 1,
- Write = 2,
- Script = 3,
- Execute = 4
- }
- }