using System; using System.Collections; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Runtime.Remoting.Messaging { /// Contains communication data sent between cooperating message sinks. // Token: 0x0200052D RID: 1325 [Token(Token = "0x200052D")] [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: 0x1700065E RID: 1630 // (get) Token: 0x06002B4D RID: 11085 [Token(Token = "0x1700065E")] IDictionary Properties { [Token(Token = "0x6002B4D")] [Address(Slot = "0")] get; } } }