2002-07-31 Duncan Mak <duncan@ximian.com>
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Channels / IClientResponseChannelSinkStack.cs
1 //
2 // System.Runtime.Remoting.Channels.IClientResponseChannelSinkStack.cs
3 //
4 // Author: Duncan Mak (duncan@ximian.com)
5 //
6 // 2002 (C) Copyright, Ximian, Inc.
7 //
8
9 using System;
10 using System.IO;
11 using System.Runtime.Remoting.Messaging;
12
13 namespace System.Runtime.Remoting.Channels {
14
15         public interface IClientResponseChannelSinkStack
16         {
17                 void AsyncProcessResponse (ITransportHeaders headers, Stream stream);
18
19                 void DispatchException (Exception e);
20
21                 void DispatchReplyMessage (IMessage msg);
22         }
23 }