DataColumnMapping.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // System.Data.Common.DataColumnMapping
  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 generic column mapping for an object that inherits from DataAdapter. This class cannot be inherited.
  13. /// </summary>
  14. public sealed class DataColumnMapping : MarshalByRefObject, IColumnMapping, ICloneable
  15. {
  16. [MonoTODO]
  17. public DataColumnMapping()
  18. {
  19. throw new NotImplementedException ();
  20. }
  21. [MonoTODO]
  22. public DataColumnMapping(string src_column, string ds_column)
  23. {
  24. throw new NotImplementedException ();
  25. }
  26. [MonoTODO]
  27. public DataColumn GetDataColumnBySchemaAction(DataTable dataTable,
  28. Type dataType,
  29. MissingSchemaAction schemaAction)
  30. {
  31. throw new NotImplementedException ();
  32. }
  33. [MonoTODO]
  34. public string DataSetColumn
  35. {
  36. get { throw new NotImplementedException (); }
  37. set { throw new NotImplementedException (); }
  38. }
  39. [MonoTODO]
  40. public string SourceColumn
  41. {
  42. get { throw new NotImplementedException (); }
  43. set { throw new NotImplementedException (); }
  44. }
  45. }
  46. }