corrected rendering: styles are applied correct
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / DataKeyCollection.cs
index 5df8d185560bacdde8500b97325a857a89b18c01..f241178bfd7f22b560f6a5e502367130002bddff 100644 (file)
 //
 
 using System.Collections;
+using System.Security.Permissions;
 
 namespace System.Web.UI.WebControls {
 
+       // CAS - no InheritanceDemand here as the class is sealed
+       [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
        public sealed class DataKeyCollection : ICollection, IEnumerable {
 
                private ArrayList list;