2
0

MessageDesigner.cs 469 B

123456789101112131415161718192021222324252627
  1. //
  2. // System.Messaging.Design.MessageDesigner
  3. //
  4. // Authors:
  5. // Gert Driesen ([email protected])
  6. //
  7. // (C) 2004 Novell
  8. //
  9. using System.Collections;
  10. using System.ComponentModel.Design;
  11. namespace System.Messaging.Design
  12. {
  13. public class MessageDesigner : ComponentDesigner
  14. {
  15. public MessageDesigner ()
  16. {
  17. }
  18. [MonoTODO]
  19. protected override void PreFilterProperties (IDictionary properties)
  20. {
  21. throw new NotImplementedException ();
  22. }
  23. }
  24. }