LateBoundChannelParameterCollection.cs 612 B

1234567891011121314151617181920212223
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //-----------------------------------------------------------------------------
  4. namespace System.ServiceModel.Channels
  5. {
  6. using System;
  7. class LateBoundChannelParameterCollection : ChannelParameterCollection
  8. {
  9. IChannel channel;
  10. protected override IChannel Channel
  11. {
  12. get { return this.channel; }
  13. }
  14. internal void SetChannel(IChannel channel)
  15. {
  16. this.channel = channel;
  17. }
  18. }
  19. }