XML Doc Update (one by one for ease of eventual merging)

This commit is contained in:
Barry Dorrans 2015-01-06 15:40:08 -08:00
parent fd6eb9af67
commit 309fce19d7
1 changed files with 6 additions and 1 deletions

View File

@ -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)