DataColumnMappingConverter.cs 785 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // System.Data.Common.DataColumnMappingConverter.cs
  3. //
  4. // Author:
  5. // Andreas Nahr ([email protected])
  6. //
  7. // (C) 2004 Andreas Nahr
  8. //
  9. using System;
  10. using System.Globalization;
  11. using System.ComponentModel;
  12. namespace System.Data.Common
  13. {
  14. internal sealed class DataColumnMappingConverter : ExpandableObjectConverter
  15. {
  16. [MonoTODO]
  17. public DataColumnMappingConverter ()
  18. {
  19. throw new NotImplementedException ();
  20. }
  21. [MonoTODO]
  22. public override object ConvertTo (ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
  23. {
  24. throw new NotImplementedException ();
  25. }
  26. [MonoTODO]
  27. public override bool CanConvertTo (ITypeDescriptorContext context, Type destinationType)
  28. {
  29. throw new NotImplementedException ();
  30. }
  31. }
  32. }