ChannelBindingProviderHelper.cs 548 B

12345678910111213141516171819
  1. //------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //------------------------------------------------------------
  4. namespace System.ServiceModel.Channels
  5. {
  6. class ChannelBindingProviderHelper : IChannelBindingProvider
  7. {
  8. public void EnableChannelBindingSupport()
  9. {
  10. this.IsChannelBindingSupportEnabled = true;
  11. }
  12. public bool IsChannelBindingSupportEnabled
  13. {
  14. get;
  15. private set;
  16. }
  17. }
  18. }