eglib: checking for locale_charset function
[mono.git] / mcs / class / System.Web / System.Web.UI / ObjectConverter.cs
index 2822f494c43bb139d157e175e19310a8f07351a2..80833dbc4359679ca6ff89c53062aeb9c025c906 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.
 //
 
+using System.Security.Permissions;
+
 namespace System.Web.UI
 {
-       [Obsolete ("Use the System.Convert class and String.Format instead", false)]
+       [Obsolete ("The recommended alternative is System.Convert and String.Format. http://go.microsoft.com/fwlink/?linkid=14202")]
+       // CAS - no InheritanceDemand here as the class is sealed
        public sealed class ObjectConverter
        {
+               public ObjectConverter ()
+               {
+               }
+
                public static object ConvertValue (object value, Type toType, string formatString)
                {
                        throw new NotImplementedException ("Not implemented and [Obsolete]");
                }
        }
 }
-