AttributeCollection.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. Add (key, value);
  58. }
  59. }
  60. public ICollection Keys {
  61. get { return bag.Keys; }
  62. }
  63. public void Add (string key, string value)
  64. {
  65. if (0 == String.Compare (key, "style", true, CultureInfo.InvariantCulture)) {
  66. CssStyle.Value = value;
  67. return;
  68. }
  69. bag.Add (key, value);
  70. }
  71. public void AddAttributes (HtmlTextWriter writer)
  72. {
  73. foreach (string key in bag.Keys) {
  74. string value = bag [key] as string;
  75. writer.AddAttribute (key, value);
  76. }
  77. }
  78. public void Clear ()
  79. {
  80. CssStyle.Clear ();
  81. bag.Clear ();
  82. }
  83. public void Remove (string key)
  84. {
  85. if (0 == String.Compare (key, "style", true, CultureInfo.InvariantCulture)) {
  86. CssStyle.Clear ();
  87. return;
  88. }
  89. bag.Remove (key);
  90. }
  91. public void Render (HtmlTextWriter writer)
  92. {
  93. foreach (string key in bag.Keys) {
  94. string value = bag [key] as string;
  95. if (value != null)
  96. writer.WriteAttribute (key, value, true);
  97. }
  98. }
  99. }
  100. }