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
|
namespace Microsoft.AspNetCore.Hosting.Server
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Represents an HttpApplication.
|
/// Represents an application.
|
||||||
/// </summary>
|
/// </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>
|
public interface IHttpApplication<TContext>
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
||||||
|
|
@ -17,10 +17,10 @@ namespace Microsoft.AspNetCore.Hosting.Server
|
||||||
IFeatureCollection Features { get; }
|
IFeatureCollection Features { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Start the server with an HttpApplication.
|
/// Start the server with an application.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="application">An instance of <see cref="IHttpApplication{TContext}"/>.</param>
|
/// <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);
|
void Start<TContext>(IHttpApplication<TContext> application);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue