2002-08-02 Duncan Mak <duncan@ximian.com>
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Channels / IClientChannelSinkStack.cs
1 //
2 // System.Runtime.Remoting.Channels.IClientChannelSinkStack.cs
3 //
4 // Author: Duncan Mak (duncan@ximian.com)
5 //
6 // 2002 (C) Copyright, Ximian, Inc.
7 //
8
9 namespace System.Runtime.Remoting.Channels {
10
11         public interface IClientChannelSinkStack : IClientResponseChannelSinkStack
12         {
13                 object Pop (IClientChannelSink sink);
14
15                 void Push (IClientChannelSink sink, object state);
16         }
17 }