NetHttpBindingCollectionElement.cs 650 B

1234567891011121314151617
  1. // <copyright>
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. // </copyright>
  4. namespace System.ServiceModel.Configuration
  5. {
  6. /// <summary>
  7. /// NetHttpBindingCollectionElement for NetHttpBinding
  8. /// </summary>
  9. public partial class NetHttpBindingCollectionElement : StandardBindingCollectionElement<NetHttpBinding, NetHttpBindingElement>
  10. {
  11. internal static NetHttpBindingCollectionElement GetBindingCollectionElement()
  12. {
  13. return (NetHttpBindingCollectionElement)ConfigurationHelpers.GetBindingCollectionElement(ConfigurationStrings.NetHttpBindingCollectionElementName);
  14. }
  15. }
  16. }