[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / class / System.Web / System.Web.UI / AttributeCollection.cs
blob3044263a8da7c4045ceba007bdf1f658a97a956c
1 //
2 // System.Web.UI.AttributeCollection.cs
3 //
4 // Authors:
5 // Duncan Mak (duncan@ximian.com)
6 // Gonzalo Paniagua (gonzalo@ximian.com)
7 //
8 // (C) 2002 Ximian, Inc. (http://www.ximian.com
9 // Copyright (C) 2005-2010 Novell, Inc (http://www.novell.com)
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.
31 using System.Collections;
32 using System.Globalization;
33 using System.Security.Permissions;
34 using System.Web.Util;
36 namespace System.Web.UI {
38 // CAS - no InheritanceDemand here as the class is sealed
39 [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
40 public sealed class AttributeCollection
42 StateBag bag;
43 CssStyleCollection styleCollection;
44 internal const string StyleAttribute = "style";
46 public AttributeCollection (StateBag bag)
48 this.bag = bag;
51 public override bool Equals (object o)
53 AttributeCollection other = o as AttributeCollection;
54 if (other == null) {
55 return false;
58 if (Count != other.Count) {
59 return false;
62 foreach (string key in Keys) {
63 if (0 == String.CompareOrdinal (key, StyleAttribute)) {
64 continue;
66 if (0 == String.CompareOrdinal (other [key], this [key])) {
67 return false;
71 if ((styleCollection == null && other.styleCollection != null) ||
72 (styleCollection != null && other.styleCollection == null)) {
73 return false;
75 else if (styleCollection != null){
76 // other.styleCollection != null too
77 if (styleCollection.Count != other.styleCollection.Count){
78 return false;
80 foreach (string styleKey in styleCollection.Keys){
81 if (0 == String.CompareOrdinal(styleCollection [styleKey], other.styleCollection [styleKey])) {
82 return false;
87 return true;
90 public override int GetHashCode ()
92 int hashValue = 0;
94 foreach (string key in Keys) {
95 if (key == StyleAttribute) {
96 continue;
98 hashValue ^= key.GetHashCode ();
99 string value = this [key];
100 if (value != null) {
101 hashValue ^= value.GetHashCode ();
105 if (styleCollection != null) {
106 foreach (string styleKey in styleCollection.Keys) {
107 hashValue ^= styleCollection [styleKey].GetHashCode ();
108 string styleValue = styleCollection [styleKey];
109 if (styleValue != null) {
110 hashValue ^= styleValue.GetHashCode ();
115 return hashValue;
118 public int Count {
119 get { return bag.Count; }
122 public CssStyleCollection CssStyle {
123 get {
124 if (styleCollection == null)
125 styleCollection = new CssStyleCollection (bag);
126 return styleCollection;
130 public string this [string key] {
131 get { return bag [key] as string; }
133 set {
134 Add (key, value);
138 public ICollection Keys {
139 get { return bag.Keys; }
142 public void Add (string key, string value)
144 if (0 == String.Compare (key, StyleAttribute, true, Helpers.InvariantCulture)) {
145 CssStyle.Value = value;
146 return;
148 bag.Add (key, value);
151 public void AddAttributes (HtmlTextWriter writer)
153 foreach (string key in bag.Keys) {
154 string value = bag [key] as string;
155 writer.AddAttribute (key, value);
159 public void Clear ()
161 CssStyle.Clear ();
162 bag.Clear ();
165 public void Remove (string key)
167 if (0 == String.Compare (key, StyleAttribute, true, Helpers.InvariantCulture)) {
168 CssStyle.Clear ();
169 return;
171 bag.Remove (key);
174 public void Render (HtmlTextWriter writer)
176 foreach (string key in bag.Keys) {
177 string value = bag [key] as string;
178 if (value != null)
179 writer.WriteAttribute (key, value, true);
183 internal void CopyFrom (AttributeCollection attributeCollection)
185 if (attributeCollection == null || attributeCollection.Count == 0)
186 return;
188 foreach (string key in attributeCollection.bag.Keys)
189 this.Add (key, attributeCollection [key]);