File: UI\HtmlControls\HtmlElement.cs
Project: ndp\fx\src\xsp\system\Web\System.Web.csproj (System.Web)
//------------------------------------------------------------------------------
// <copyright file="HtmlElement.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
 
namespace System.Web.UI.HtmlControls {
    using System.ComponentModel;
    using System.Web;
    using System.Web.UI;
 
    public class HtmlElement : HtmlContainerControl {
 
        public HtmlElement() : base("html") {
        }
 
        [
        WebCategory("Behavior"),
        DefaultValue(""),
        DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
        UrlProperty()
        ]
        public string Manifest {
            get {
                string s = Attributes["manifest"];
                return s ?? String.Empty;
            }
            set {
                Attributes["manifest"] = MapStringAttributeToString(value);
            }
        }
 
        /*
         * Override to process manifest attribute
         */
        protected override void RenderAttributes(HtmlTextWriter writer) {
            PreProcessRelativeReferenceAttribute(writer, "manifest");
            base.RenderAttributes(writer);
        }
 
    }
}