Normalize line endings.
[mono.git] / mcs / class / System.Web / System.Web / HttpFileCollection.cs
index 7b486f8d26dfc6952162e58b06c758c746da7595..7b77b5cc02c3c238b654e2efdeebdbd3dc02a69d 100644 (file)
 //
 
 using System.Collections.Specialized;
+using System.Security.Permissions;
 
 namespace System.Web {
 
+       // CAS - no InheritanceDemand here as the class is sealed
+       [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
        public sealed class HttpFileCollection : NameObjectCollectionBase
        {
                internal HttpFileCollection ()
@@ -85,5 +88,4 @@ namespace System.Web {
                        }
                }
        }
-
 }