WS2007HttpBindingElement.cs 903 B

123456789101112131415161718192021222324252627282930313233
  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.ComponentModel;
  11. using System.Text;
  12. using System.ServiceModel.Channels;
  13. public partial class WS2007HttpBindingElement : WSHttpBindingElement
  14. {
  15. public WS2007HttpBindingElement(string name)
  16. : base(name)
  17. {
  18. }
  19. public WS2007HttpBindingElement()
  20. : this(null)
  21. {
  22. }
  23. protected override Type BindingElementType
  24. {
  25. get { return typeof(WS2007HttpBinding); }
  26. }
  27. }
  28. }