From b9452868db3e45a4d18e4225d288729de8975274 Mon Sep 17 00:00:00 2001 From: Rick Anderson Date: Wed, 12 Sep 2018 12:04:28 -0700 Subject: [PATCH] Update IdentityServiceCollectionExtensions.cs docs (#1962) --- src/Core/IdentityServiceCollectionExtensions.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/Core/IdentityServiceCollectionExtensions.cs b/src/Core/IdentityServiceCollectionExtensions.cs index bf9bf08e6b..3dcbd68119 100644 --- a/src/Core/IdentityServiceCollectionExtensions.cs +++ b/src/Core/IdentityServiceCollectionExtensions.cs @@ -13,7 +13,8 @@ namespace Microsoft.Extensions.DependencyInjection public static class IdentityServiceCollectionExtensions { /// - /// Adds and configures the identity system for the specified User and Role types. + /// Adds and configures the identity system for the specified User type. Role services are not added + /// by default but can be added with . /// /// The type representing a User in the system. /// The services available in the application. @@ -22,7 +23,8 @@ namespace Microsoft.Extensions.DependencyInjection => services.AddIdentityCore(o => { }); /// - /// Adds and configures the identity system for the specified User and Role types. + /// Adds and configures the identity system for the specified User type. Role services are not added by default + /// but can be added with . /// /// The type representing a User in the system. /// The services available in the application. @@ -52,4 +54,4 @@ namespace Microsoft.Extensions.DependencyInjection return new IdentityBuilder(typeof(TUser), services); } } -} \ No newline at end of file +}