PageRenderTime 63ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/WCFWebApi/src/Microsoft.ApplicationServer.Http/Microsoft/ApplicationServer/Http/Configuration/HttpEndpointCollectionElement.cs

#
C# | 16 lines | 8 code | 2 blank | 6 comment | 0 complexity | 00507956a61b099a96ab31f82d2b4468 MD5 | raw file
Possible License(s): CC-BY-SA-3.0, Apache-2.0
  1. // <copyright>
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. // </copyright>
  4. namespace Microsoft.ApplicationServer.Http.Configuration
  5. {
  6. using System.ServiceModel.Configuration;
  7. using Microsoft.ApplicationServer.Http.Description;
  8. /// <summary>
  9. /// Class that provides a collection of <see cref="HttpEndpointElement"/> instances.
  10. /// </summary>
  11. public class HttpEndpointCollectionElement : StandardEndpointCollectionElement<HttpEndpoint, HttpEndpointElement>
  12. {
  13. }
  14. }