2
0

IClientResponseChannelSinkStack.cs 497 B

1234567891011121314151617181920212223
  1. //
  2. // System.Runtime.Remoting.Channels.IClientResponseChannelSinkStack.cs
  3. //
  4. // Author: Duncan Mak ([email protected])
  5. //
  6. // 2002 (C) Copyright, Ximian, Inc.
  7. //
  8. using System;
  9. using System.IO;
  10. using System.Runtime.Remoting.Messaging;
  11. namespace System.Runtime.Remoting.Channels {
  12. public interface IClientResponseChannelSinkStack
  13. {
  14. void AsyncProcessResponse (ITransportHeaders headers, Stream stream);
  15. void DispatchException (Exception e);
  16. void DispatchReplyMessage (IMessage msg);
  17. }
  18. }