| AddClaimsAsync(TUser, IEnumerable<Claim>, CancellationToken) | Adds the claimsgiven to the specifieduser. | 
        	
	| AddLoginAsync(TUser, UserLoginInfo, CancellationToken) | Adds the logingiven to the specifieduser. | 
        	
	| AddOrUpdatePasskeyAsync(TUser, UserPasskeyInfo, CancellationToken) | Creates a new passkey credential in the store for the specified user,
or updates an existing passkey. | 
        	
	| AddToRoleAsync(TUser, String, CancellationToken) | Adds the given normalizedRoleNameto the specifieduser. | 
        	
	| AddUserTokenAsync(TUserToken) | Add a new user token. | 
        	
	| AddUserTokenAsync(TUserToken) | Add a new user token.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| ConvertIdFromString(String) | Converts the provided (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)idto a strongly typed key object. | 
        	
	| ConvertIdToString(TKey) | Converts the provided (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)idto its string representation. | 
        	
	| CountCodesAsync(TUser, CancellationToken) | Returns how many recovery code are still valid for a user.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| CreateAsync(TUser, CancellationToken) | Creates the specified userin the user store. | 
        	
	| CreateUserClaim(TUser, Claim) | Called to create a new instance of a IdentityUserClaim<TKey>.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| CreateUserLogin(TUser, UserLoginInfo) | Called to create a new instance of a IdentityUserLogin<TKey>.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| CreateUserPasskey(TUser, UserPasskeyInfo) | Called to create a new instance of a IdentityUserPasskey<TKey>. | 
        	
	| CreateUserRole(TUser, TRole) | Called to create a new instance of a IdentityUserRole<TKey>.(Inherited from UserStoreBase<TUser,TRole,TKey,TUserClaim,TUserRole,TUserLogin,TUserToken,TRoleClaim>) | 
        	
	| CreateUserToken(TUser, String, String, String) | Called to create a new instance of a IdentityUserToken<TKey>.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| DeleteAsync(TUser, CancellationToken) | Deletes the specified userfrom the user store. | 
        	
	| Dispose() | Dispose the store(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| FindByEmailAsync(String, CancellationToken) | Gets the user, if any, associated with the specified, normalized email address. | 
        	
	| FindByIdAsync(String, CancellationToken) | Finds and returns a user, if any, who has the specified userId. | 
        	
	| FindByLoginAsync(String, String, CancellationToken) | Retrieves the user associated with the specified login provider and login provider key. | 
        	
	| FindByNameAsync(String, CancellationToken) | Finds and returns a user, if any, who has the specified normalized user name. | 
        	
	| FindByPasskeyIdAsync(Byte[], CancellationToken) | Finds and returns a user, if any, associated with the specified passkey credential identifier. | 
        	
	| FindPasskeyAsync(TUser, Byte[], CancellationToken) | Finds a passkey for the specified user with the specified credential id. | 
        	
	| FindRoleAsync(String, CancellationToken) | Return a role with the normalized name if it exists. | 
        	
	| FindTokenAsync(TUser, String, String, CancellationToken) | Find a user token if it exists. | 
        	
	| FindUserAsync(TKey, CancellationToken) | Return a user with the matching userId if it exists. | 
        	
	| FindUserAsync(TKey, CancellationToken) | Return a user with the matching userId if it exists.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| FindUserLoginAsync(String, String, CancellationToken) | Return a user login with  provider, providerKey if it exists. | 
        	
	| FindUserLoginAsync(TKey, String, String, CancellationToken) | Return a user login with the matching userId, provider, providerKey if it exists. | 
        	
	| FindUserLoginAsync(TKey, String, String, CancellationToken) | Return a user login with the matching userId, provider, providerKey if it exists.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| FindUserRoleAsync(TKey, TKey, CancellationToken) | Return a user role for the userId and roleId if it exists. | 
        	
	| FindUserRoleAsync(TKey, TKey, CancellationToken) | Return a user role for the userId and roleId if it exists.(Inherited from UserStoreBase<TUser,TRole,TKey,TUserClaim,TUserRole,TUserLogin,TUserToken,TRoleClaim>) | 
        	
	| GetAccessFailedCountAsync(TUser, CancellationToken) | Retrieves the current failed access count for the specified (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)user.. | 
        	
	| GetAuthenticatorKeyAsync(TUser, CancellationToken) | Get the authenticator key for the specified (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)user. | 
        	
	| GetClaimsAsync(TUser, CancellationToken) | Get the claims associated with the specified useras an asynchronous operation. | 
        	
	| GetEmailAsync(TUser, CancellationToken) | Gets the email address for the specified (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)user. | 
        	
	| GetEmailConfirmedAsync(TUser, CancellationToken) | Gets a flag indicating whether the email address for the specified (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)userhas been verified, true if the email address is verified otherwise
false. | 
        	
	| GetLockoutEnabledAsync(TUser, CancellationToken) | Retrieves a flag indicating whether user lockout can enabled for the specified user.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| GetLockoutEndDateAsync(TUser, CancellationToken) | Gets the last DateTimeOffset a user's last lockout expired, if any.
Any time in the past should be indicates a user is not locked out.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| GetLoginsAsync(TUser, CancellationToken) | Retrieves the associated logins for the specified <param ref="user" />. | 
        	
	| GetNormalizedEmailAsync(TUser, CancellationToken) | Returns the normalized email for the specified (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)user. | 
        	
	| GetNormalizedUserNameAsync(TUser, CancellationToken) | Gets the normalized user name for the specified (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)user. | 
        	
	| GetPasskeysAsync(TUser, CancellationToken) | Gets the passkey credentials for the specified user. | 
        	
	| GetPasswordHashAsync(TUser, CancellationToken) | Gets the password hash for a user.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| GetPhoneNumberAsync(TUser, CancellationToken) | Gets the telephone number, if any, for the specified (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)user. | 
        	
	| GetPhoneNumberConfirmedAsync(TUser, CancellationToken) | Gets a flag indicating whether the specified (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)user's telephone number has been confirmed. | 
        	
	| GetRolesAsync(TUser, CancellationToken) | Retrieves the roles the specified useris a member of. | 
        	
	| GetSecurityStampAsync(TUser, CancellationToken) | Get the security stamp for the specified (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)user. | 
        	
	| GetTokenAsync(TUser, String, String, CancellationToken) | Returns the token value.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| GetTwoFactorEnabledAsync(TUser, CancellationToken) | Returns a flag indicating whether the specified (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)userhas two factor authentication enabled or not,
as an asynchronous operation. | 
        	
	| GetUserIdAsync(TUser, CancellationToken) | Gets the user identifier for the specified (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)user. | 
        	
	| GetUserNameAsync(TUser, CancellationToken) | Gets the user name for the specified (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)user. | 
        	
	| GetUsersForClaimAsync(Claim, CancellationToken) | Retrieves all users with the specified claim. | 
        	
	| GetUsersInRoleAsync(String, CancellationToken) | Retrieves all users in the specified role. | 
        	
	| HasPasswordAsync(TUser, CancellationToken) | Returns a flag indicating if the specified user has a password.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| IncrementAccessFailedCountAsync(TUser, CancellationToken) | Records that a failed access has occurred, incrementing the failed access count.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| IsInRoleAsync(TUser, String, CancellationToken) | Returns a flag indicating if the specified user is a member of the give normalizedRoleName. | 
        	
	| RedeemCodeAsync(TUser, String, CancellationToken) | Returns whether a recovery code is valid for a user. Note: recovery codes are only valid
once, and will be invalid after use.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| RemoveClaimsAsync(TUser, IEnumerable<Claim>, CancellationToken) | Removes the claimsgiven from the specifieduser. | 
        	
	| RemoveFromRoleAsync(TUser, String, CancellationToken) | Removes the given normalizedRoleNamefrom the specifieduser. | 
        	
	| RemoveLoginAsync(TUser, String, String, CancellationToken) | Removes the loginProvidergiven from the specifieduser. | 
        	
	| RemovePasskeyAsync(TUser, Byte[], CancellationToken) | Removes a passkey credential from the specified user. | 
        	
	| RemoveTokenAsync(TUser, String, String, CancellationToken) | Deletes a token for a user.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| RemoveUserTokenAsync(TUserToken) | Remove a new user token. | 
        	
	| RemoveUserTokenAsync(TUserToken) | Remove a new user token.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| ReplaceClaimAsync(TUser, Claim, Claim, CancellationToken) | Replaces the claimon the specifieduser, with thenewClaim. | 
        	
	| ReplaceCodesAsync(TUser, IEnumerable<String>, CancellationToken) | Updates the recovery codes for the user while invalidating any previous recovery codes.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| ResetAccessFailedCountAsync(TUser, CancellationToken) | Resets a user's failed access count.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| SaveChanges(CancellationToken) | Saves the current store. | 
        	
	| SetAuthenticatorKeyAsync(TUser, String, CancellationToken) | Sets the authenticator key for the specified (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)user. | 
        	
	| SetEmailAsync(TUser, String, CancellationToken) | Sets the (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)emailaddress for auser. | 
        	
	| SetEmailConfirmedAsync(TUser, Boolean, CancellationToken) | Sets the flag indicating whether the specified (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)user's email address has been confirmed or not. | 
        	
	| SetLockoutEnabledAsync(TUser, Boolean, CancellationToken) | Set the flag indicating if the specified (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)usercan be locked out.. | 
        	
	| SetLockoutEndDateAsync(TUser, Nullable<DateTimeOffset>, CancellationToken) | Locks out a user until the specified end date has passed. Setting a end date in the past immediately unlocks a user.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| SetNormalizedEmailAsync(TUser, String, CancellationToken) | Sets the normalized email for the specified (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)user. | 
        	
	| SetNormalizedUserNameAsync(TUser, String, CancellationToken) | Sets the given normalized name for the specified (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)user. | 
        	
	| SetPasswordHashAsync(TUser, String, CancellationToken) | Sets the password hash for a user.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| SetPhoneNumberAsync(TUser, String, CancellationToken) | Sets the telephone number for the specified (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)user. | 
        	
	| SetPhoneNumberConfirmedAsync(TUser, Boolean, CancellationToken) | Sets a flag indicating if the specified (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)user's phone number has been confirmed.. | 
        	
	| SetSecurityStampAsync(TUser, String, CancellationToken) | Sets the provided security (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)stampfor the specifieduser. | 
        	
	| SetTokenAsync(TUser, String, String, String, CancellationToken) | Sets the token value for a particular user.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| SetTwoFactorEnabledAsync(TUser, Boolean, CancellationToken) | Sets a flag indicating whether the specified (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)userhas two factor authentication enabled or not,
as an asynchronous operation. | 
        	
	| SetUserNameAsync(TUser, String, CancellationToken) | Sets the given (Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>)userNamefor the specifieduser. | 
        	
	| ThrowIfDisposed() | Throws if this class has been disposed.(Inherited from UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>) | 
        	
	| UpdateAsync(TUser, CancellationToken) | Updates the specified userin the user store. |