XmlAttributeCollection.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. //
  2. // System.Xml.XmlAttributeCollection
  3. //
  4. // Author:
  5. // Jason Diamond ([email protected])
  6. //
  7. // (C) 2002 Jason Diamond http://injektilo.org/
  8. //
  9. using System;
  10. using System.Collections;
  11. namespace System.Xml
  12. {
  13. public class XmlAttributeCollection : XmlNamedNodeMap, ICollection
  14. {
  15. internal XmlAttributeCollection (XmlNode parent) : base (parent)
  16. {
  17. }
  18. bool ICollection.IsSynchronized {
  19. get {
  20. throw new NotImplementedException ();
  21. }
  22. }
  23. [MonoTODO]
  24. [System.Runtime.CompilerServices.IndexerName ("ItemOf")]
  25. public virtual XmlAttribute this [string name] {
  26. get {
  27. throw new NotImplementedException ();
  28. }
  29. }
  30. [MonoTODO]
  31. [System.Runtime.CompilerServices.IndexerName ("ItemOf")]
  32. public virtual XmlAttribute this [int i] {
  33. get {
  34. throw new NotImplementedException ();
  35. }
  36. }
  37. [MonoTODO]
  38. [System.Runtime.CompilerServices.IndexerName ("ItemOf")]
  39. public virtual XmlAttribute this [string localName, string namespaceURI] {
  40. get {
  41. throw new NotImplementedException ();
  42. }
  43. }
  44. object ICollection.SyncRoot {
  45. get {
  46. throw new NotImplementedException ();
  47. }
  48. }
  49. [MonoTODO]
  50. public virtual XmlAttribute Append (XmlAttribute node)
  51. {
  52. throw new NotImplementedException ();
  53. }
  54. [MonoTODO]
  55. public void CopyTo (XmlAttribute [] array, int index)
  56. {
  57. throw new NotImplementedException ();
  58. }
  59. [MonoTODO]
  60. void ICollection.CopyTo (Array array, int index)
  61. {
  62. throw new NotImplementedException ();
  63. }
  64. [MonoTODO]
  65. public virtual XmlAttribute InsertAfter (XmlAttribute newNode, XmlAttribute refNode)
  66. {
  67. throw new NotImplementedException ();
  68. }
  69. [MonoTODO]
  70. public virtual XmlAttribute InsertBefore (XmlAttribute newNode, XmlAttribute refNode)
  71. {
  72. throw new NotImplementedException ();
  73. }
  74. [MonoTODO]
  75. public virtual XmlAttribute Prepend (XmlAttribute node)
  76. {
  77. throw new NotImplementedException ();
  78. }
  79. [MonoTODO]
  80. public virtual XmlAttribute Remove (XmlAttribute node)
  81. {
  82. throw new NotImplementedException ();
  83. }
  84. [MonoTODO]
  85. public virtual void RemoveAll ()
  86. {
  87. throw new NotImplementedException ();
  88. }
  89. [MonoTODO]
  90. public virtual XmlAttribute RemoveAt (int i)
  91. {
  92. throw new NotImplementedException ();
  93. }
  94. [MonoTODO]
  95. public override XmlNode SetNamedItem (XmlNode node)
  96. {
  97. return base.SetNamedItem (node);
  98. }
  99. }
  100. }