Questions tagged [usermanager]
122 questions
0
votes
1 answer
Error "The method createUser(String, int) is undefined for the type UserManager"
I am trying to create new User using UserManager service on android KK 4.4 ( Multi-user)
mUserManager = (UserManager)getSystemService(Context.USER_SERVICE);
mUserManager.createUser("USER NAME", 0);
I can access all other APIs in UserManager…

Ram Rote
- 199
- 1
- 1
- 9
-2
votes
1 answer
ASP.Net UserManager AddRoleTo not working
with VS 2015 I've created a little MVC App with the default authentification stuff.
I've changed nothing but the code in the registration action of the account controller:
var context = new ApplicationDbContext();
if (ModelState.IsValid)
{
var…

Clemens
- 51
- 11