DataTableMappingCollection.cs 2.6 KB

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