XmlViewSchemaDictionary.cs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. //
  2. // System.Xml.Query.XmlViewSchemaDictionary
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. using System.Collections;
  11. using System.Data.Mapping;
  12. using System.Data.SqlXml;
  13. namespace System.Xml.Query {
  14. public class XmlViewSchemaDictionary : ICollection, IDictionary, IEnumerable
  15. {
  16. #region Constructors
  17. [MonoTODO]
  18. public XmlViewSchemaDictionary ()
  19. {
  20. }
  21. #endregion // Constructors
  22. #region Properties
  23. [MonoTODO]
  24. public int Count {
  25. get { throw new NotImplementedException (); }
  26. }
  27. [MonoTODO]
  28. bool ICollection.IsSynchronized {
  29. get { throw new NotImplementedException (); }
  30. }
  31. [MonoTODO]
  32. object ICollection.SyncRoot {
  33. get { throw new NotImplementedException (); }
  34. }
  35. [MonoTODO]
  36. bool IDictionary.IsFixedSize {
  37. get { throw new NotImplementedException (); }
  38. }
  39. [MonoTODO]
  40. bool IDictionary.IsReadOnly {
  41. get { throw new NotImplementedException (); }
  42. }
  43. [MonoTODO]
  44. ICollection IDictionary.Keys {
  45. get { throw new NotImplementedException (); }
  46. }
  47. [MonoTODO]
  48. ICollection IDictionary.Values {
  49. get { throw new NotImplementedException (); }
  50. }
  51. [MonoTODO]
  52. object IDictionary.this [object key] {
  53. get { throw new NotImplementedException (); }
  54. set { throw new NotImplementedException (); }
  55. }
  56. [MonoTODO]
  57. public XmlViewSchema this [string name] {
  58. get { throw new NotImplementedException (); }
  59. set { throw new NotImplementedException (); }
  60. }
  61. #endregion // Properties
  62. #region Methods
  63. [MonoTODO]
  64. public void Add (string name, XmlViewSchema mapping)
  65. {
  66. throw new NotImplementedException ();
  67. }
  68. [MonoTODO]
  69. public void Add (string name, MappingSchema mapping)
  70. {
  71. throw new NotImplementedException ();
  72. }
  73. [MonoTODO]
  74. public void Add (string name, string mappingUrl)
  75. {
  76. throw new NotImplementedException ();
  77. }
  78. [MonoTODO]
  79. public void Add (string name, XmlReader reader)
  80. {
  81. throw new NotImplementedException ();
  82. }
  83. [MonoTODO]
  84. public void Add (XmlViewSchemaDictionary externalCollection)
  85. {
  86. throw new NotImplementedException ();
  87. }
  88. [MonoTODO]
  89. public void Clear ()
  90. {
  91. throw new NotImplementedException ();
  92. }
  93. [MonoTODO]
  94. public bool Contains (string name)
  95. {
  96. throw new NotImplementedException ();
  97. }
  98. [MonoTODO]
  99. public IDictionaryEnumerator GetEnumerator ()
  100. {
  101. throw new NotImplementedException ();
  102. }
  103. [MonoTODO]
  104. void ICollection.CopyTo (Array array, int index)
  105. {
  106. throw new NotImplementedException ();
  107. }
  108. [MonoTODO]
  109. void IDictionary.Add (object key, object value)
  110. {
  111. throw new NotImplementedException ();
  112. }
  113. [MonoTODO]
  114. bool IDictionary.Contains (object key)
  115. {
  116. throw new NotImplementedException ();
  117. }
  118. [MonoTODO]
  119. void IDictionary.Remove (object key)
  120. {
  121. throw new NotImplementedException ();
  122. }
  123. [MonoTODO]
  124. IEnumerator IEnumerable.GetEnumerator ()
  125. {
  126. throw new NotImplementedException ();
  127. }
  128. [MonoTODO]
  129. public void Remove (string name)
  130. {
  131. throw new NotImplementedException ();
  132. }
  133. #endregion // Methods
  134. }
  135. }
  136. #endif // NET_1_2