Class IdentityUser
The default implementation of IdentityUser<TKey> which uses a string as a primary key.
public class IdentityUser : IdentityUser<string>, IIdentityUser<string>, IConcurrency<string>
- Inheritance
-
IdentityUser<string, IdentityUserClaim<string>, IdentityUserRole<string>, IdentityUserLogin<string>>IdentityUser
- Implements
- Inherited Members
Constructors
IdentityUser()
Initializes a new instance of IdentityUser.
public IdentityUser()
Remarks
The Id property is initialized to from a new GUID string value.
IdentityUser(string)
Initializes a new instance of IdentityUser.
public IdentityUser(string userName)
Parameters
userName
stringThe user name.
Remarks
The Id property is initialized to from a new GUID string value.