Few minor doc comment changes
This commit is contained in:
parent
f5480d5c2b
commit
19501c03aa
|
|
@ -8,9 +8,9 @@ using Microsoft.AspNetCore.Http.Features;
|
|||
namespace Microsoft.AspNetCore.Hosting.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents an HttpApplication.
|
||||
/// Represents an application.
|
||||
/// </summary>
|
||||
/// <typeparam name="TContext">The context associated with the HttpApplication.</typeparam>
|
||||
/// <typeparam name="TContext">The context associated with the application.</typeparam>
|
||||
public interface IHttpApplication<TContext>
|
||||
{
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -17,10 +17,10 @@ namespace Microsoft.AspNetCore.Hosting.Server
|
|||
IFeatureCollection Features { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Start the server with an HttpApplication.
|
||||
/// Start the server with an application.
|
||||
/// </summary>
|
||||
/// <param name="application">An instance of <see cref="IHttpApplication{TContext}"/>.</param>
|
||||
/// <typeparam name="TContext">The context associated with the HttpApplication.</typeparam>
|
||||
/// <typeparam name="TContext">The context associated with the application.</typeparam>
|
||||
void Start<TContext>(IHttpApplication<TContext> application);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue