ContextInputSessionChannel.cs 809 B

1234567891011121314151617181920212223
  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 ContextInputSessionChannel : ContextInputChannelBase<IInputSessionChannel>, IInputSessionChannel
  10. {
  11. public ContextInputSessionChannel(ChannelManagerBase channelManager, IInputSessionChannel innerChannel, ContextExchangeMechanism contextExchangeMechanism)
  12. : base(channelManager, innerChannel, contextExchangeMechanism)
  13. {
  14. }
  15. public IInputSession Session
  16. {
  17. get { return this.InnerChannel.Session; }
  18. }
  19. }
  20. }