File: UserUpdateType.cs
Web Access
Project: src\src\Identity\Extensions.Core\src\Microsoft.Extensions.Identity.Core.csproj (Microsoft.Extensions.Identity.Core)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.AspNetCore.Identity;
 
internal enum UserUpdateType
{
    Update,
    UserName,
    AddPassword,
    ChangePassword,
    SecurityStamp,
    ResetPassword,
    RemoveLogin,
    AddLogin,
    AddClaims,
    ReplaceClaim,
    RemoveClaims,
    AddToRoles,
    RemoveFromRoles,
    SetEmail,
    ConfirmEmail,
    PasswordRehash,
    RemovePassword,
    ChangeEmail,
    SetPhoneNumber,
    ChangePhoneNumber,
    SetTwoFactorEnabled,
    SetLockoutEnabled,
    SetLockoutEndDate,
    AccessFailed,
    ResetAccessFailedCount,
    SetAuthenticationToken,
    RemoveAuthenticationToken,
    ResetAuthenticatorKey,
    GenerateNewTwoFactorRecoveryCodes,
    RedeemTwoFactorRecoveryCode,
    SetPasskey,
    RemovePasskey
}