Add new classes to get rid of the warnings being emitted by the
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Contexts / IDynamicMessageSink.cs
1 //
2 // System.Runtime.Remoting.Contexts.IDynamicMessageSink..cs
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9
10 using System.Runtime.Remoting.Messaging;
11
12 namespace System.Runtime.Remoting.Contexts {
13
14         public interface IDynamicMessageSink {
15
16                 void ProcessMessageFinish (IMessage reply_msg, bool client_site, bool async);
17
18                 void ProcessMessageStart  (IMessage req_msg, bool client_site, bool async);
19         }
20 }