| 123456789101112131415161718192021222324252627 |
- //
- // System.Messaging.Design.MessageDesigner
- //
- // Authors:
- // Gert Driesen ([email protected])
- //
- // (C) 2004 Novell
- //
- using System.Collections;
- using System.ComponentModel.Design;
- namespace System.Messaging.Design
- {
- public class MessageDesigner : ComponentDesigner
- {
- public MessageDesigner ()
- {
- }
- [MonoTODO]
- protected override void PreFilterProperties (IDictionary properties)
- {
- throw new NotImplementedException ();
- }
- }
- }
|