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: 0x0200052D RID: 1325
|
|
[Token(Token = "0x200052D")]
|
|
[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: 0x1700065E RID: 1630
|
|
// (get) Token: 0x06002B4D RID: 11085
|
|
[Token(Token = "0x1700065E")]
|
|
IDictionary Properties
|
|
{
|
|
[Token(Token = "0x6002B4D")]
|
|
[Address(Slot = "0")]
|
|
get;
|
|
}
|
|
}
|
|
}
|