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

# · C# · 22 lines · 11 code · 3 blank · 8 comment · 0 complexity · 7eda7189d8d62b51960702076ca4995e 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 ResourceType
  13. {
  14. File = 0,
  15. Directory = 1,
  16. Either = 2,
  17. Unspecified = 3
  18. }
  19. }