PageRenderTime 47ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/stable-1.1.2/Server/Handlers/ResourceType.cs

#
C# | 20 lines | 10 code | 2 blank | 8 comment | 0 complexity | aafb35cdbc91eea91b7c5663e6c6715b MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  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. namespace Web.Management.PHP.Handlers
  10. {
  11. internal enum ResourceType
  12. {
  13. File = 0,
  14. Directory = 1,
  15. Either = 2,
  16. Unspecified = 3
  17. }
  18. }