BasicHttpContextBindingCollectionElement.cs 1.0 KB

12345678910111213141516171819202122232425
  1. //------------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //------------------------------------------------------------------------------
  4. namespace System.ServiceModel.Configuration
  5. {
  6. using System.Runtime.CompilerServices;
  7. using System.ServiceModel;
  8. [TypeForwardedFrom("System.WorkflowServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
  9. public class BasicHttpContextBindingCollectionElement : StandardBindingCollectionElement<BasicHttpContextBinding, BasicHttpContextBindingElement>
  10. {
  11. internal const string basicHttpContextBindingName = "basicHttpContextBinding";
  12. public BasicHttpContextBindingCollectionElement()
  13. : base()
  14. {
  15. }
  16. internal static BasicHttpContextBindingCollectionElement GetBindingCollectionElement()
  17. {
  18. return (BasicHttpContextBindingCollectionElement) ConfigurationHelpers.GetBindingCollectionElement(basicHttpContextBindingName);
  19. }
  20. }
  21. }