IInputSessionShutdown.cs 501 B

123456789101112131415
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //-----------------------------------------------------------------------------
  4. namespace System.ServiceModel.Dispatcher
  5. {
  6. using System;
  7. using System.ServiceModel.Channels;
  8. public interface IInputSessionShutdown
  9. {
  10. void ChannelFaulted(IDuplexContextChannel channel);
  11. void DoneReceiving(IDuplexContextChannel channel);
  12. }
  13. }