Microsoft.AspNetCore.Hosting.Server.Abstractions.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.AspNetCore.Hosting.Server.Abstractions</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.AspNetCore.Hosting.Server.IHttpApplication`1">
  8. <summary>
  9. Represents an application.
  10. </summary>
  11. <typeparam name="TContext">The context associated with the application.</typeparam>
  12. </member>
  13. <member name="M:Microsoft.AspNetCore.Hosting.Server.IHttpApplication`1.CreateContext(Microsoft.AspNetCore.Http.Features.IFeatureCollection)">
  14. <summary>
  15. Create a TContext given a collection of HTTP features.
  16. </summary>
  17. <param name="contextFeatures">A collection of HTTP features to be used for creating the TContext.</param>
  18. <returns>The created TContext.</returns>
  19. </member>
  20. <member name="M:Microsoft.AspNetCore.Hosting.Server.IHttpApplication`1.ProcessRequestAsync(`0)">
  21. <summary>
  22. Asynchronously processes an TContext.
  23. </summary>
  24. <param name="context">The TContext that the operation will process.</param>
  25. </member>
  26. <member name="M:Microsoft.AspNetCore.Hosting.Server.IHttpApplication`1.DisposeContext(`0,System.Exception)">
  27. <summary>
  28. Dispose a given TContext.
  29. </summary>
  30. <param name="context">The TContext to be disposed.</param>
  31. <param name="exception">The Exception thrown when processing did not complete successfully, otherwise null.</param>
  32. </member>
  33. <member name="T:Microsoft.AspNetCore.Hosting.Server.IServer">
  34. <summary>
  35. Represents a server.
  36. </summary>
  37. </member>
  38. <member name="P:Microsoft.AspNetCore.Hosting.Server.IServer.Features">
  39. <summary>
  40. A collection of HTTP features of the server.
  41. </summary>
  42. </member>
  43. <member name="M:Microsoft.AspNetCore.Hosting.Server.IServer.StartAsync``1(Microsoft.AspNetCore.Hosting.Server.IHttpApplication{``0},System.Threading.CancellationToken)">
  44. <summary>
  45. Start the server with an application.
  46. </summary>
  47. <param name="application">An instance of <see cref="T:Microsoft.AspNetCore.Hosting.Server.IHttpApplication`1"/>.</param>
  48. <typeparam name="TContext">The context associated with the application.</typeparam>
  49. <param name="cancellationToken">Indicates if the server startup should be aborted.</param>
  50. </member>
  51. <member name="M:Microsoft.AspNetCore.Hosting.Server.IServer.StopAsync(System.Threading.CancellationToken)">
  52. <summary>
  53. Stop processing requests and shut down the server, gracefully if possible.
  54. </summary>
  55. <param name="cancellationToken">Indicates if the graceful shutdown should be aborted.</param>
  56. </member>
  57. </members>
  58. </doc>