* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / System.Web / System.Web.UI / DesignerDataBoundLiteralControl.cs
index 33333b9e4e17057e56a3627852dca2b91a2a3a9a..3557f19ec1d79392f99dc2d06773951b1a36d722 100644 (file)
@@ -5,8 +5,7 @@
 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
 //
 // (C) 2003 Andreas Nahr
-//
-
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-using System;
 using System.ComponentModel;
+using System.Security.Permissions;
 
 namespace System.Web.UI
 {
+       // CAS - no InheritanceDemand here as the class is sealed
+       [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
+       // attributes
        [ToolboxItem(false)]
        [DataBindingHandler ("System.Web.UI.Design.TextDataBindingHandler, " + Consts.AssemblySystem_Design)]
        public sealed class DesignerDataBoundLiteralControl : Control
@@ -41,7 +43,7 @@ namespace System.Web.UI
 
                public DesignerDataBoundLiteralControl ()
                {
-                       base.PreventAutoID ();
+                       AutoID = false;
                }
 
                public string Text {
@@ -65,7 +67,12 @@ namespace System.Web.UI
                                text = (string) savedState;
                }
 
-               protected override void Render (HtmlTextWriter output)
+#if NET_2_0
+               protected internal
+#else
+               protected
+#endif
+               override void Render (HtmlTextWriter output)
                {
                        output.Write (text);
                }