19 lines
549 B
C#
19 lines
549 B
C#
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" };
|
|
}
|
|
}
|