using System; using System.Collections; using System.Runtime.InteropServices; namespace System.Runtime.Remoting.Messaging { /// Contains communication data sent between cooperating message sinks. // Token: 0x020003E9 RID: 1001 [ComVisible(true)] public interface IMessage { /// Gets an that represents a collection of the message's properties. /// A dictionary that represents a collection of the message's properties. /// The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. /// /// /// // Token: 0x17000763 RID: 1891 // (get) Token: 0x06002716 RID: 10006 IDictionary Properties { get; } } }