* System.Web20.csproj: added ObjectInputStream.cs and ObjectOutputStream.cs
[mono.git] / mcs / class / System.Web / System.Web.UI / TemplateContainerAttribute.cs
old mode 100755 (executable)
new mode 100644 (file)
index aaf2bf5..e51f42b
@@ -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.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
        [AttributeUsage (AttributeTargets.Property)]
        public sealed class TemplateContainerAttribute : Attribute
        {
                Type containerType;
                
+#if NET_2_0
+               BindingDirection direction;
+               
+               public TemplateContainerAttribute (Type containerType, BindingDirection direction)
+               {
+                       this.containerType = containerType;
+                       this.direction = direction;
+               }
+               
+               public BindingDirection BindingDirection {
+                       get { return direction; }
+               }
+#endif
+               
                public TemplateContainerAttribute (Type containerType)
                {
                        this.containerType = containerType;