ExpandableObjectConverter.cs 799 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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, object value, Attribute[] attributes)
  22. {
  23. throw new NotImplementedException ();
  24. }
  25. [MonoTODO]
  26. public override bool GetPropertiesSupported (ITypeDescriptorContext context)
  27. {
  28. throw new NotImplementedException ();
  29. }
  30. #endregion // Methods
  31. }
  32. }