* Contexts.cs : Added methods for getting the client context sink chain and the
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Contexts / IContributeObjectSink.cs
1 //
2 // System.Runtime.Remoting.Contexts.IContributeObjectSink.cs
3 //
4 // Author: Duncan Mak  (duncan@ximian.com)
5 //
6 // 2002 (C) Copyright, Ximian, Inc.
7 //
8
9 using System;
10 using System.Runtime.Remoting.Messaging;
11
12 namespace System.Runtime.Remoting.Contexts {
13         
14         public interface IContributeObjectSink
15         {
16                 IMessageSink GetObjectSink (MarshalByRefObject obj, IMessageSink nextSink);
17         }
18 }