Merge branch 'master' of github.com:mono/mono
[mono.git] / mcs / class / System.Web / System.Web.UI / PropertyConverter.cs
1 //
2 // Permission is hereby granted, free of charge, to any person obtaining
3 // a copy of this software and associated documentation files (the
4 // "Software"), to deal in the Software without restriction, including
5 // without limitation the rights to use, copy, modify, merge, publish,
6 // distribute, sublicense, and/or sell copies of the Software, and to
7 // permit persons to whom the Software is furnished to do so, subject to
8 // the following conditions:
9 // 
10 // The above copyright notice and this permission notice shall be
11 // included in all copies or substantial portions of the Software.
12 // 
13 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
17 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
18 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
19 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20 //
21 //
22 // System.Web.UI.PropertyConverter.cs
23 //
24 // Authors:
25 //      Jackson Harper (jackson@ximian.com)
26 //
27 // Copyright (C) 2005-2010 Novell, Inc (http://www.novell.com)
28
29 using System.Reflection;
30 using System.ComponentModel;
31 using System.Security.Permissions;
32
33 namespace System.Web.UI {
34
35         // CAS - no InheritanceDemand here as the class is sealed
36         [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
37         public static class PropertyConverter
38         {
39                 public static object EnumFromString (Type enumType, string value)
40                 {
41                         object res = null;
42
43                         try {
44                                 res = Enum.Parse (enumType, value, true);
45                         } catch {
46                                 res = null;
47                         }
48                         return res;
49                 }
50
51                 public static string EnumToString (Type enumType, object enumValue)
52                 {
53                         return Enum.Format (enumType, enumValue, "G");
54                 }
55
56                 public static object ObjectFromString (Type objType,
57                                 MemberInfo propertyInfo, string value)
58                 {
59                         if (objType == typeof (string))
60                                 return value;
61
62                         // Is there a less kludgy way to get the converter?
63                         PropertyDescriptorCollection col = TypeDescriptor.GetProperties (
64                                 propertyInfo.ReflectedType);
65                         PropertyDescriptor pd = col.Find (propertyInfo.Name, false);
66                         if (pd.Converter == null || !pd.Converter.CanConvertFrom (typeof (string))) {
67                                 throw new HttpException (Locale.GetText ("Cannot create an object " +
68                                       "of type '{0}' from its string representation '{1}' for the " +
69                                       "'{2}' property", objType, value, propertyInfo.Name));
70                         }
71                         return pd.Converter.ConvertFromInvariantString (value);
72                 }
73         }
74 }
75