ContextRequestSessionChannel.cs 929 B

123456789101112131415161718192021222324
  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 ContextRequestSessionChannel : ContextRequestChannelBase<IRequestSessionChannel>, IRequestSessionChannel
  10. {
  11. public ContextRequestSessionChannel(ChannelManagerBase channelManager, IRequestSessionChannel innerChannel,
  12. ContextExchangeMechanism contextExchangeMechanism, Uri callbackAddress, bool contextManagementEnabled)
  13. : base(channelManager, innerChannel, contextExchangeMechanism, callbackAddress, contextManagementEnabled)
  14. {
  15. }
  16. public IOutputSession Session
  17. {
  18. get { return this.InnerChannel.Session; }
  19. }
  20. }
  21. }