/tags/stable-1.1.2/Server/Handlers/ResourceType.cs
# · C# · 20 lines · 10 code · 2 blank · 8 comment · 0 complexity · aafb35cdbc91eea91b7c5663e6c6715b 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>
- //-----------------------------------------------------------------------
-
- namespace Web.Management.PHP.Handlers
- {
-
- internal enum ResourceType
- {
- File = 0,
- Directory = 1,
- Either = 2,
- Unspecified = 3
- }
- }