| 1234567891011121314151617181920 |
- //
- // System.Runtime.Remoting.Messaging.IMessage.cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- using System.Collections;
- namespace System.Runtime.Remoting.Messaging {
- public interface IMessage {
- IDictionary Properties {
- get;
- }
- }
- }
|