IChannelInitializer.cs 460 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. using System.ServiceModel;
  9. public interface IChannelInitializer
  10. {
  11. void Initialize(IClientChannel channel);
  12. }
  13. }