WS2007FederationHttpBindingElement.cs 929 B

12345678910111213141516171819202122232425262728293031
  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 WS2007FederationHttpBindingElement : WSFederationHttpBindingElement
  14. {
  15. public WS2007FederationHttpBindingElement(string name) : base(name)
  16. {
  17. }
  18. public WS2007FederationHttpBindingElement() : this(null)
  19. {
  20. }
  21. protected override Type BindingElementType
  22. {
  23. get { return typeof(WS2007FederationHttpBinding); }
  24. }
  25. }
  26. }