ExpandableObjectConverter.cs 738 B

12345678910111213141516171819202122232425262728293031323334353637
  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. public ExpandableObjectConverter ();
  14. #endregion // Constructors
  15. #region Methods
  16. [MonoTODO]
  17. public override PropertyDescriptorCollection GetProperties (ITypeDescriptorContext context, object value, Attribute[] attributes)
  18. {
  19. throw new NotImplementedException ();
  20. }
  21. [MonoTODO]
  22. public override bool GetPropertiesSupported (ITypeDescriptorContext context)
  23. {
  24. throw new NotImplementedException ();
  25. }
  26. #endregion // Methods
  27. }
  28. }