ContextInputChannel.cs 662 B

123456789101112131415161718
  1. //------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //------------------------------------------------------------
  4. namespace System.ServiceModel.Channels
  5. {
  6. using System;
  7. using System.Collections.Generic;
  8. using System.ServiceModel;
  9. class ContextInputChannel : ContextInputChannelBase<IInputChannel>, IInputChannel
  10. {
  11. public ContextInputChannel(ChannelManagerBase channelManager, IInputChannel innerChannel, ContextExchangeMechanism contextExchangeMechanism)
  12. : base(channelManager, innerChannel, contextExchangeMechanism)
  13. {
  14. }
  15. }
  16. }