This should fix #76928. This fix incorporates ideas from a patch
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / TagMapInfo.cs
1 //
2 // System.Web.Configuration.TagMapInfo
3 //
4 // Authors:
5 //      Chris Toshok (toshok@ximian.com)
6 //
7 // (C) 2005 Novell, Inc (http://www.novell.com)
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 #if NET_2_0
32
33 using System;
34 using System.ComponentModel;
35 using System.Configuration;
36 using System.Xml;
37
38 namespace System.Web.Configuration
39 {
40         public sealed class TagMapInfo : ConfigurationElement
41         {
42                 static ConfigurationPropertyCollection properties;
43                 static ConfigurationProperty mappedTagTypeProp;
44                 static ConfigurationProperty tagTypeProp;
45
46
47                 static TagMapInfo ()
48                 {
49                         mappedTagTypeProp = new ConfigurationProperty ("mappedTagType", typeof (string), null,
50                                                                        TypeDescriptor.GetConverter (typeof (string)),
51                                                                        PropertyHelper.NonEmptyStringValidator,
52                                                                        ConfigurationPropertyOptions.None);
53                         tagTypeProp = new ConfigurationProperty ("tagType", typeof (string), "",
54                                                                  TypeDescriptor.GetConverter (typeof (string)),
55                                                                  PropertyHelper.NonEmptyStringValidator,
56                                                                  ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey);
57
58                         properties = new ConfigurationPropertyCollection ();
59                         properties.Add (mappedTagTypeProp);
60                         properties.Add (tagTypeProp);
61                 }
62
63                 public TagMapInfo (string tagTypeName, string mappedTagTypeName)
64                 {
65                         this.TagType = tagTypeName;
66                         this.MappedTagType = mappedTagTypeName;
67                 }
68
69                 public override bool Equals (object map)
70                 {
71                         TagMapInfo info = map as TagMapInfo;
72                         if (info == null)
73                                 return false;
74
75                         return (MappedTagType == info.MappedTagType
76                                 && TagType == info.TagType);
77                 }
78
79                 public override int GetHashCode ()
80                 {
81                         return MappedTagType.GetHashCode() + TagType.GetHashCode();
82                 }
83
84                 [MonoTODO]
85                 protected override bool SerializeElement (XmlWriter writer, bool serializeCollectionKey)
86                 {
87                         bool ret = base.SerializeElement (writer, serializeCollectionKey);
88
89                         /* XXX more here? .. */
90
91                         return ret;
92                 }
93
94                 [StringValidator (MinLength = 1)]
95                 [ConfigurationProperty ("mappedTagType")]
96                 public string MappedTagType {
97                         get { return (string) base[mappedTagTypeProp]; }
98                         set { base[mappedTagTypeProp] = value; }
99                 }
100
101                 [StringValidator (MinLength = 1)]
102                 [ConfigurationProperty ("tagType", DefaultValue = "", Options = ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey)]
103                 public string TagType {
104                         get { return (string) base[tagTypeProp]; }
105                         set { base[tagTypeProp] = value; }
106                 }
107
108                 protected override ConfigurationPropertyCollection Properties {
109                         get { return properties; }
110                 }
111         }
112 }
113
114 #endif