This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,27 @@
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;
}
}
}