/tags/beta-1.0.2/Server/Handlers/ResourceType.cs
# · C# · 22 lines · 11 code · 3 blank · 8 comment · 0 complexity · 7eda7189d8d62b51960702076ca4995e 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 ResourceType
- {
- File = 0,
- Directory = 1,
- Either = 2,
- Unspecified = 3
- }
- }