/tags/stable-1.1.0/Server/DefaultDocument/FileElement.cs
# · C# · 30 lines · 18 code · 4 blank · 8 comment · 0 complexity · 5b6f11d9d9c2e218af673d92336b27b3 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 Microsoft.Web.Administration;
-
- namespace Web.Management.PHP.DefaultDocument
- {
-
- internal class FileElement : ConfigurationElement
- {
-
- public string Value
- {
- get
- {
- return (string)base["value"];
- }
- set
- {
- base["value"] = value;
- }
- }
- }
- }