当前位置: 首页>>代码示例>>C#>>正文


C# ApplicationUserManager.DeleteAsync方法代码示例

本文整理汇总了C#中ApplicationUserManager.DeleteAsync方法的典型用法代码示例。如果您正苦于以下问题:C# ApplicationUserManager.DeleteAsync方法的具体用法?C# ApplicationUserManager.DeleteAsync怎么用?C# ApplicationUserManager.DeleteAsync使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ApplicationUserManager的用法示例。


在下文中一共展示了ApplicationUserManager.DeleteAsync方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: RegisterUserAsync

        /// <summary>
        /// Registers a new user and also ensures that address is added into the db properly asyncronously
        /// </summary>
        /// <param name="model">The RegisterBindingModel with appropriate data</param>
        /// <param name="userManager">The UserManager context to perform the add</param>
        /// <returns>StatusResult</returns>
        public static async Task<StatusResult<UserInfoViewModel>> RegisterUserAsync(RegisterBindingModel model, ApplicationUserManager userManager)
        {
            UserInfoViewModel obj = null;
            try
            {
                var user = ApplicationUser.CreateUser(model);
                IdentityResult userResult = await userManager.CreateAsync(user, model.Password);

                if (!userResult.Succeeded)
                {
                    return StatusResult<UserInfoViewModel>.Error();
                }

                // add the address
                var addressResult = await UserAddressManager.InsertUserAddressAsync(model, user.Id);

                if (addressResult.Code != StatusCode.OK)
                {
                    //TODO:: Need to handle error where the address was not added successfully, can't find anything to rollback CreateAsync,
                    // it seems like CreateAsync is set to autocommit or something. 
                    // This is a little quick and dirty and hacky, but here i am just going to delete the user if we dont succeed with adding the address
                    await userManager.DeleteAsync(user);
                    return StatusResult<UserInfoViewModel>.Error(addressResult.Message);
                }
                obj = new UserInfoViewModel()
                {
                    FirstName = model.FirstName,
                    LastName = model.LastName,
                    Email = model.Email,
                    Id = user.Id
                };
            }
            catch (Exception ex)
            {
                return StatusResult<UserInfoViewModel>.Error(ex.Message);
            }
            return StatusResult<UserInfoViewModel>.Success(obj);
        }
开发者ID:Dinhh1,项目名称:BottleRocketAPI,代码行数:44,代码来源:BRUserManager.cs

示例2: ApplicationUserManager

        public void Registrar_Obterer_CambiarContraseña_Borrar_Uasuario()
        {
            var servicioUsuario = new ApplicationUserManager(new UserStore<Usuario>(new ContextoBaseDatos()));

            // Crear
            var modeloRegistro = new RegisterViewModel {
                Email = "[email protected]",
                Password ="password!",
                ConfirmPassword = "password!",
            };

            var usuario = new Usuario {
                UserName = modeloRegistro.Email,
                Email = modeloRegistro.Email
            };

            // Registrar
            var resultadoAccion = servicioUsuario.CreateAsync(usuario, modeloRegistro.Password).Result;

            Assert.IsTrue(resultadoAccion.Succeeded);

            // Obtener
            var usuarioCreado = servicioUsuario.FindByNameAsync(modeloRegistro.Email).Result;
            Assert.AreEqual(modeloRegistro.Email, usuarioCreado.Email);

            // Cambiar contraseña
            resultadoAccion = servicioUsuario.ChangePasswordAsync(usuarioCreado.Id, modeloRegistro.Password, "nuevoPassword!").Result;
            Assert.IsTrue(resultadoAccion.Succeeded);

            // Borrar
            resultadoAccion = servicioUsuario.DeleteAsync(usuarioCreado).Result;

            Assert.IsTrue(resultadoAccion.Succeeded);

            var usuarioEliminado = servicioUsuario.FindByNameAsync(modeloRegistro.Email).Result;
            Assert.IsNull(usuarioEliminado);
        }
开发者ID:acapdevila,项目名称:GestionFacturas,代码行数:37,代码来源:TestsApplicationUserManager.cs

示例3: DeleteUser

        public async Task<ActionResult> DeleteUser(string Username)
        {
            try
            {
                var manager = new ApplicationUserManager(new UserStore<ApplicationUser>(context));
                ApplicationUser user = context.Users.Where(u => u.UserName.Equals(Username, StringComparison.CurrentCultureIgnoreCase)).FirstOrDefault();

                string userID = user.Id;

                if (ModelState.IsValid)
                {
                    if (userID == null)
                    {
                        return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
                    }

                    var userDel = await manager.FindByIdAsync(userID);
                    var logins = user.Logins;

                    foreach (var login in logins.ToList())
                    {
                        await manager.RemoveLoginAsync(login.UserId, new UserLoginInfo(login.LoginProvider, login.ProviderKey));
                    }

                    var rolesForUser = await manager.GetRolesAsync(userID);

                    if (rolesForUser.Count() > 0)
                    {
                        foreach (var item in rolesForUser.ToList())
                        {
                            // item should be the name of the role
                            var result = await manager.RemoveFromRoleAsync(user.Id, item);
                        }
                    }

                    await manager.DeleteAsync(user);

                    TempData["ValidationMessage"] = ("Success: " + " " + Username + " " + "Was Removed");
                    return View("ManageUser");
                }
                else
                {
                    TempData["ValidationMessage"] = ("Error: " + " " + Username + " " + "Was Not Removed");
                    return View("ManageUser");
                }
            }
            catch
            {
                TempData["ValidationMessage"] = ("Error: Something Went Wrong");
                return View("ManageUser");
            }

        }
开发者ID:amoryjh,项目名称:MVC-HPFS,代码行数:53,代码来源:UserController.cs


注:本文中的ApplicationUserManager.DeleteAsync方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。