PageRenderTime 43ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/stable-1.1.0/Server/DefaultDocument/FileElement.cs

#
C# | 30 lines | 18 code | 4 blank | 8 comment | 0 complexity | 5b6f11d9d9c2e218af673d92336b27b3 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. using Microsoft.Web.Administration;
  10. namespace Web.Management.PHP.DefaultDocument
  11. {
  12. internal class FileElement : ConfigurationElement
  13. {
  14. public string Value
  15. {
  16. get
  17. {
  18. return (string)base["value"];
  19. }
  20. set
  21. {
  22. base["value"] = value;
  23. }
  24. }
  25. }
  26. }