XML Doc Update (one by one for ease of eventual merging)
This commit is contained in:
parent
fd6eb9af67
commit
309fce19d7
|
|
@ -7,10 +7,15 @@ using Microsoft.AspNet.Identity;
|
||||||
namespace Microsoft.AspNet.Builder
|
namespace Microsoft.AspNet.Builder
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Startup extensions
|
/// Identity extensions for <see cref="IApplicationBuilder"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static class BuilderExtensions
|
public static class BuilderExtensions
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Enables the ASP.NET identity for the current application.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="app">The <see cref="IApplicationBuilder"/> instance this method extends.</param>
|
||||||
|
/// <returns>The <see cref="IApplicationBuilder"/> instance this method extends.</returns>
|
||||||
public static IApplicationBuilder UseIdentity(this IApplicationBuilder app)
|
public static IApplicationBuilder UseIdentity(this IApplicationBuilder app)
|
||||||
{
|
{
|
||||||
if (app == null)
|
if (app == null)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue