IChannelBaseProxy.cs 443 B

1234567891011121314151617
  1. // <copyright>
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. // </copyright>
  4. namespace System.ServiceModel
  5. {
  6. using System;
  7. using System.ServiceModel.Channels;
  8. /// <summary>
  9. /// An interface used by ChannelBase to override the ServiceChannel that would normally be returned by ClientBase.
  10. /// </summary>
  11. internal interface IChannelBaseProxy
  12. {
  13. ServiceChannel GetServiceChannel();
  14. }
  15. }