MexHttpBindingElement.cs 779 B

123456789101112131415161718192021222324252627
  1. //------------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //------------------------------------------------------------------------------
  4. namespace System.ServiceModel.Configuration
  5. {
  6. using System.Configuration;
  7. using System.ServiceModel;
  8. using System.Globalization;
  9. using System.ServiceModel.Security;
  10. using System.Text;
  11. using System.ComponentModel;
  12. using System.ServiceModel.Channels;
  13. public partial class MexHttpBindingElement : MexBindingElement<WSHttpBinding>
  14. {
  15. public MexHttpBindingElement(string name)
  16. : base(name)
  17. {
  18. }
  19. public MexHttpBindingElement()
  20. : this(null)
  21. {
  22. }
  23. }
  24. }