Update IdentityBuilder.cs <typeparam> tag definition
Updated the <typeparam> tag used for AddUserStore<T> to match the definition used for AddRoleStore<T>.
This commit is contained in:
parent
6e25a84993
commit
b10c8ec0b8
|
|
@ -111,7 +111,7 @@ namespace Microsoft.AspNetCore.Identity
|
|||
/// <summary>
|
||||
/// Adds an <see cref="IUserStore{TUser}"/> for the <seealso cref="UserType"/>.
|
||||
/// </summary>
|
||||
/// <typeparam name="T">The user type whose password will be validated.</typeparam>
|
||||
/// <typeparam name="T">The user type held in the store.</typeparam>
|
||||
/// <returns>The current <see cref="IdentityBuilder"/> instance.</returns>
|
||||
public virtual IdentityBuilder AddUserStore<T>() where T : class
|
||||
{
|
||||
|
|
@ -230,4 +230,4 @@ namespace Microsoft.AspNetCore.Identity
|
|||
return AddScoped(managerType, typeof(TSignInManager));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue