AttributeCollection.cs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. //
  2. // System.Web.UI.AttributeCollection.cs
  3. //
  4. // Authors:
  5. // Duncan Mak ([email protected])
  6. // Gonzalo Paniagua ([email protected])
  7. //
  8. // (C) 2002 Ximian, Inc. (http://www.ximian.com
  9. // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
  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. using System.Collections;
  31. using System.Globalization;
  32. using System.Security.Permissions;
  33. namespace System.Web.UI {
  34. // CAS - no InheritanceDemand here as the class is sealed
  35. [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
  36. public sealed class AttributeCollection
  37. {
  38. private StateBag bag;
  39. private CssStyleCollection styleCollection;
  40. public AttributeCollection (StateBag bag)
  41. {
  42. this.bag = bag;
  43. }
  44. public int Count {
  45. get { return bag.Count; }
  46. }
  47. public CssStyleCollection CssStyle {
  48. get {
  49. if (styleCollection == null)
  50. styleCollection = new CssStyleCollection (bag);
  51. return styleCollection;
  52. }
  53. }
  54. public string this [string key] {
  55. get { return bag [key] as string; }
  56. set {
  57. if (0 == String.Compare (key, "style", true, CultureInfo.InvariantCulture)) {
  58. CssStyle.Clear();
  59. if (value != null) {
  60. CssStyle.FillStyle (value);
  61. }
  62. key = "style"; // Needs to be always lowercase
  63. }
  64. bag.Add (key, value);
  65. }
  66. }
  67. public ICollection Keys {
  68. get { return bag.Keys; }
  69. }
  70. public void Add (string key, string value)
  71. {
  72. if (0 == String.Compare (key, "style", true, CultureInfo.InvariantCulture)) {
  73. CssStyle.Clear();
  74. if (value != null) {
  75. CssStyle.FillStyle (value);
  76. }
  77. key = "style"; // Needs to be always lowercase
  78. }
  79. bag.Add (key, value);
  80. }
  81. public void AddAttributes (HtmlTextWriter writer)
  82. {
  83. foreach (string key in bag.Keys) {
  84. string value = bag [key] as string;
  85. writer.AddAttribute (key, value);
  86. }
  87. }
  88. public void Clear ()
  89. {
  90. bag.Clear ();
  91. }
  92. public void Remove (string key)
  93. {
  94. bag.Remove (key);
  95. }
  96. public void Render (HtmlTextWriter writer)
  97. {
  98. foreach (string key in bag.Keys) {
  99. string value = bag [key] as string;
  100. if (value != null)
  101. writer.WriteAttribute (key, value, true);
  102. }
  103. }
  104. }
  105. }