ReferenceConverter.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. //
  2. // System.ComponentModel.ReferenceConverter
  3. //
  4. // Authors:
  5. // Martin Willemoes Hansen ([email protected])
  6. //
  7. // (C) 2003 Martin Willemoes Hansen
  8. //
  9. using System.Globalization;
  10. namespace System.ComponentModel
  11. {
  12. public class ReferenceConverter : TypeConverter
  13. {
  14. [MonoTODO]
  15. public ReferenceConverter (Type type)
  16. {
  17. }
  18. [MonoTODO]
  19. public override bool CanConvertFrom (ITypeDescriptorContext context,
  20. Type sourceType)
  21. {
  22. throw new NotImplementedException();
  23. }
  24. [MonoTODO]
  25. public override object ConvertFrom (ITypeDescriptorContext context,
  26. CultureInfo culture,
  27. object value)
  28. {
  29. throw new NotImplementedException();
  30. }
  31. [MonoTODO]
  32. public override object ConvertTo (ITypeDescriptorContext context,
  33. CultureInfo culture,
  34. object value,
  35. Type destinationType)
  36. {
  37. throw new NotImplementedException();
  38. }
  39. [MonoTODO]
  40. public override StandardValuesCollection GetStandardValues (ITypeDescriptorContext context)
  41. {
  42. throw new NotImplementedException();
  43. }
  44. [MonoTODO]
  45. public override bool GetStandardValuesExclusive (ITypeDescriptorContext context)
  46. {
  47. throw new NotImplementedException();
  48. }
  49. [MonoTODO]
  50. public override bool GetStandardValuesSupported (ITypeDescriptorContext context)
  51. {
  52. throw new NotImplementedException();
  53. }
  54. [MonoTODO]
  55. protected virtual bool IsValueAllowed (ITypeDescriptorContext context, object value)
  56. {
  57. throw new NotImplementedException();
  58. }
  59. [MonoTODO]
  60. ~ReferenceConverter()
  61. {
  62. }
  63. }
  64. }