eglib: checking for locale_charset function
[mono.git] / mcs / class / System.Web / System.Web.UI / EmptyControlCollection.cs
old mode 100755 (executable)
new mode 100644 (file)
index 90592e9..214f692
@@ -4,8 +4,7 @@
 // Duncan Mak  (duncan@ximian.com)
 //
 // (C) Ximian, Inc.
-//
-
+// 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.Security.Permissions;
 
 namespace System.Web.UI {
 
+       // CAS
+       [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
+       [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
        public class EmptyControlCollection : ControlCollection
        {
                public EmptyControlCollection (Control owner)
-                       : base (owner, true)
+                       : base (owner)
                {
                }
                
                public override void Add (Control child)
                {
-                       throw new NotSupportedException ("Control " + Owner.ID + " does not allow children");
+                       throw new HttpException (Locale.GetText ("Control '{0}' does not allow children.", Owner.ID));
                }
 
                public override void AddAt (int index, Control child)
                {
-                       throw new NotSupportedException ("Control " + Owner.ID + " does not allow children");
+                       throw new HttpException (Locale.GetText ("Control '{0}' does not allow children.", Owner.ID));
                }
        }
 }