* ServerContextTerminatorSink.cs: Modified to work with new types of identities.
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Messaging / MethodCallDictionary.cs
1 //
2 // System.Runtime.Remoting.Messaging.MethodCallDictionary.cs
3 //
4 // Author: Lluis Sanchez Gual (lluis@ideary.com)
5 //
6 // 2003 (C) Lluis Sanchez Gual
7 //\r
8 \r
9 using System;\r
10 \r
11 namespace System.Runtime.Remoting.Messaging\r
12 {\r
13         internal class MethodCallDictionary : MethodDictionary\r
14         {\r
15                 public static string[] InternalKeys = new string[] {"__Uri", "__MethodName", "__TypeName", "__MethodSignature", "__Args", "__CallContext"};\r
16 \r
17                 public MethodCallDictionary(IMethodMessage message) : base (message)\r
18                 {\r
19                         MethodKeys = InternalKeys;\r
20                 }\r
21         }\r
22 }\r