New test.
[mono.git] / mcs / class / System.Web / System.Web.UI / Triplet.cs
index c3d3046adb5b98ca5cbb3744a8723a3be9ba513c..f27de1fd5ccdf50463c0e3c7e7e1b20738d34812 100644 (file)
@@ -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)]
 #if NET_2_0
        [Serializable]
-       sealed
+       public sealed class Triplet {
+#else
+       [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
+       public class Triplet {
 #endif
-       public class Triplet
-       {
                public object First;
                public object Second;
                public object Third;