ContextRequestChannel.cs 781 B

12345678910111213141516171819
  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 ContextRequestChannel : ContextRequestChannelBase<IRequestChannel>, IRequestChannel
  10. {
  11. public ContextRequestChannel(ChannelManagerBase channelManager, IRequestChannel innerChannel,
  12. ContextExchangeMechanism contextExchangeMechanism, Uri callbackAddress, bool contextManagementEnabled)
  13. : base(channelManager, innerChannel, contextExchangeMechanism, callbackAddress, contextManagementEnabled)
  14. {
  15. }
  16. }
  17. }