ComponentConverter.cs 730 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // System.ComponentModel.ComponentConverter
  3. //
  4. // Authors:
  5. // Martin Willemoes Hansen ([email protected])
  6. //
  7. // (C) 2003 Martin Willemoes Hansen
  8. //
  9. namespace System.ComponentModel
  10. {
  11. public class ComponentConverter : ReferenceConverter
  12. {
  13. [MonoTODO]
  14. public ComponentConverter (Type type) : base (type)
  15. {
  16. }
  17. [MonoTODO]
  18. public override PropertyDescriptorCollection GetProperties (ITypeDescriptorContext context,
  19. object value,
  20. Attribute[] attributes)
  21. {
  22. throw new NotImplementedException();
  23. }
  24. [MonoTODO]
  25. public override bool GetPropertiesSupported (ITypeDescriptorContext context)
  26. {
  27. throw new NotImplementedException();
  28. }
  29. [MonoTODO]
  30. ~ComponentConverter()
  31. {
  32. }
  33. }
  34. }