SqlParameterConverter.cs 871 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // System.Data.SqlClient.SqlParameterConverter.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System;
  10. using System.ComponentModel;
  11. using System.Globalization;
  12. namespace System.Data.SqlClient {
  13. internal sealed class SqlParameterConverter : ExpandableObjectConverter
  14. {
  15. #region Constructors
  16. [MonoTODO]
  17. public SqlParameterConverter ()
  18. {
  19. throw new NotImplementedException ();
  20. }
  21. #endregion // Constructors
  22. #region Methods
  23. [MonoTODO]
  24. public override object ConvertTo (ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
  25. {
  26. throw new NotImplementedException ();
  27. }
  28. [MonoTODO]
  29. public override bool CanConvertTo (ITypeDescriptorContext context, Type destinationType)
  30. {
  31. throw new NotImplementedException ();
  32. }
  33. #endregion // Methods
  34. }
  35. }