ExpandableObjectConverter.cs 812 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // System.ComponentModel.ExpandableObjectConverter.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System;
  10. namespace System.ComponentModel {
  11. public class ExpandableObjectConverter : TypeConverter {
  12. #region Constructors
  13. [MonoTODO]
  14. public ExpandableObjectConverter ()
  15. {
  16. throw new NotImplementedException ();
  17. }
  18. #endregion // Constructors
  19. #region Methods
  20. [MonoTODO]
  21. public override PropertyDescriptorCollection GetProperties (ITypeDescriptorContext context,
  22. object value, Attribute[] attributes)
  23. {
  24. throw new NotImplementedException ();
  25. }
  26. [MonoTODO]
  27. public override bool GetPropertiesSupported (ITypeDescriptorContext context)
  28. {
  29. throw new NotImplementedException ();
  30. }
  31. #endregion // Methods
  32. }
  33. }