28 lines
987 B
C#
28 lines
987 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Runtime.Remoting.Messaging
|
|
{
|
|
/// <summary>Contains communication data sent between cooperating message sinks.</summary>
|
|
// Token: 0x02000511 RID: 1297
|
|
[Token(Token = "0x2000511")]
|
|
[ComVisible(true)]
|
|
public interface IMessage
|
|
{
|
|
/// <summary>Gets an <see cref="T:System.Collections.IDictionary" /> that represents a collection of the message's properties.</summary>
|
|
/// <returns>A dictionary that represents a collection of the message's properties.</returns>
|
|
/// <exception cref="T:System.Security.SecurityException">The immediate caller makes the call through a reference to the interface and does not have infrastructure permission.</exception>
|
|
// Token: 0x170005E6 RID: 1510
|
|
// (get) Token: 0x06002940 RID: 10560
|
|
[Token(Token = "0x170005E6")]
|
|
IDictionary Properties
|
|
{
|
|
[Token(Token = "0x6002940")]
|
|
[Address(Slot = "0")]
|
|
get;
|
|
}
|
|
}
|
|
}
|