This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,18 @@
using System;
namespace System.Runtime.Remoting.Messaging
{
// Token: 0x020003F5 RID: 1013
internal class MethodCallDictionary : MethodDictionary
{
// Token: 0x06002767 RID: 10087 RVA: 0x000815B4 File Offset: 0x0007F7B4
public MethodCallDictionary(IMethodMessage message)
: base(message)
{
base.MethodKeys = MethodCallDictionary.InternalKeys;
}
// Token: 0x04000F53 RID: 3923
public static string[] InternalKeys = new string[] { "__Uri", "__MethodName", "__TypeName", "__MethodSignature", "__Args", "__CallContext" };
}
}