DataTableMappingCollection.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. //
  2. // System.Data.Common.DataTableMappingCollection.cs
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. //
  7. // (C) Ximian, Inc
  8. //
  9. using System;
  10. using System.Collections;
  11. namespace System.Data.Common
  12. {
  13. /// <summary>
  14. /// A collection of DataTableMapping objects. This class cannot be inherited.
  15. /// </summary>
  16. public sealed class DataTableMappingCollection :
  17. MarshalByRefObject, ITableMappingCollection, IList,
  18. ICollection, IEnumerable
  19. {
  20. [MonoTODO]
  21. public DataTableMappingCollection() {
  22. throw new NotImplementedException ();
  23. }
  24. [MonoTODO]
  25. public int Add (object obj) {
  26. throw new NotImplementedException ();
  27. }
  28. [MonoTODO]
  29. public DataTableMapping Add (string a, string b) {
  30. throw new NotImplementedException ();
  31. }
  32. [MonoTODO]
  33. public void AddRange(DataTableMapping[] values) {
  34. throw new NotImplementedException ();
  35. }
  36. [MonoTODO]
  37. public void Clear() {
  38. throw new NotImplementedException ();
  39. }
  40. [MonoTODO]
  41. public bool Contains (object obj) {
  42. throw new NotImplementedException ();
  43. }
  44. [MonoTODO]
  45. public bool Contains (string str) {
  46. throw new NotImplementedException ();
  47. }
  48. [MonoTODO]
  49. public void CopyTo(Array array, int index) {
  50. throw new NotImplementedException ();
  51. }
  52. [MonoTODO]
  53. public DataTableMapping GetByDataSetTable(string dataSetTable) {
  54. throw new NotImplementedException ();
  55. }
  56. [MonoTODO]
  57. public static DataTableMapping GetTableMappingBySchemaAction(
  58. DataTableMappingCollection tableMappings,
  59. string sourceTable,
  60. string dataSetTable,
  61. MissingMappingAction mappingAction) {
  62. throw new NotImplementedException ();
  63. }
  64. [MonoTODO]
  65. public int IndexOf (object obj) {
  66. throw new NotImplementedException ();
  67. }
  68. [MonoTODO]
  69. public int IndexOf (string str) {
  70. throw new NotImplementedException ();
  71. }
  72. [MonoTODO]
  73. public int IndexOfDataSetTable (string dataSetTable) {
  74. throw new NotImplementedException ();
  75. }
  76. [MonoTODO]
  77. public void Insert (int index, object value) {
  78. throw new NotImplementedException ();
  79. }
  80. [MonoTODO]
  81. public void Remove (object value) {
  82. throw new NotImplementedException ();
  83. }
  84. [MonoTODO]
  85. public void RemoveAt (int index) {
  86. throw new NotImplementedException ();
  87. }
  88. [MonoTODO]
  89. public void RemoveAt (string index) {
  90. throw new NotImplementedException ();
  91. }
  92. [MonoTODO]
  93. public int Count {
  94. get { throw new NotImplementedException (); }
  95. }
  96. [MonoTODO]
  97. public DataTableMapping this[int i] {
  98. get { throw new NotImplementedException (); }
  99. set { throw new NotImplementedException (); }
  100. }
  101. [MonoTODO]
  102. public DataTableMapping this[string s] {
  103. get { throw new NotImplementedException (); }
  104. set { throw new NotImplementedException (); }
  105. }
  106. }
  107. }