DataColumnMappingCollection.cs 2.1 KB

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