Moved chain building and validation from Mono.Security to System
[mono.git] / mcs / class / System.Web / System.Web.UI / ObjectConverter.cs
index 2822f494c43bb139d157e175e19310a8f07351a2..5c51905a8aca941a667197079ca160420e94a5cf 100644 (file)
@@ -4,9 +4,7 @@
 // Authors:
 //     Gonzalo Paniagua Javier (gonzalo@ximian.com)
 //
-// (C) 2003 Novell, Inc (http://www.novell.com)
-//
-
+// Copyright (C) 2003,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.
 //
 
-namespace System.Web.UI
-{
+using System.Security.Permissions;
+
+namespace System.Web.UI {
+
        [Obsolete ("Use the System.Convert class and String.Format instead", false)]
-       public sealed class ObjectConverter
-       {
+       // CAS - no InheritanceDemand here as the class is sealed
+       [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
+       public sealed class ObjectConverter {
+
+               public ObjectConverter ()
+               {
+               }
+
                public static object ConvertValue (object value, Type toType, string formatString)
                {
                        throw new NotImplementedException ("Not implemented and [Obsolete]");
                }
        }
 }
-