| 1234567891011121314151617181920212223 |
- //
- // System.Runtime.Remoting.Channels.IClientResponseChannelSinkStack.cs
- //
- // Author: Duncan Mak ([email protected])
- //
- // 2002 (C) Copyright, Ximian, Inc.
- //
- using System;
- using System.IO;
- using System.Runtime.Remoting.Messaging;
- namespace System.Runtime.Remoting.Channels {
- public interface IClientResponseChannelSinkStack
- {
- void AsyncProcessResponse (ITransportHeaders headers, Stream stream);
- void DispatchException (Exception e);
- void DispatchReplyMessage (IMessage msg);
- }
- }
|