Top "Asp.net-identity" questions

The ASP.

ASP.NET MVC 5 - Identity. How to get current ApplicationUser

I have an Article entity in my project which has the ApplicationUser property named Author. How can I get the …

c# asp.net-mvc-5 identity asp.net-identity
How to get the current logged in user Id in ASP.NET Core

I've done this before with MVC5 using User.Identity.GetUserId() but that doesn't seem to work here. The User.Identity …

asp.net asp.net-identity asp.net-core-mvc asp.net-core-1.0
How to get current user, and how to use User class in MVC5?

How can I get the id of the currently logged in user in MVC 5? I tried the StackOverflow suggestions, but …

c# asp.net asp.net-mvc asp.net-mvc-5 asp.net-identity
How to get current user in asp.net core

I want to get a current user for getting information of a user such as an email. But I can't …

c# asp.net-core asp.net-identity
ASP.NET Identity - HttpContext has no extension method for GetOwinContext

I have downloaded, and successfully ran the ASP.NET Identity sample from here: https://github.com/rustd/AspnetIdentitySample I am …

c# asp.net asp.net-mvc asp.net-identity
ASP.NET Core Identity - get current user

To get the currently logged in user in MVC5, all we had to do was: using Microsoft.AspNet.Identity; [Authorize] …

c# asp.net-core asp.net-core-mvc asp.net-identity
Creating Roles in Asp.net Identity MVC 5

There is very little documentation about using the new Asp.net Identity Security Framework. I have pieced together what I …

c# asp.net-mvc-5 asp.net-identity
Get the current user, within an ApiController action, without passing the userID as a parameter

How do we get the current user, within an secure ApiController action, without passing the userName or userId as a …

c# asp.net asp.net-web-api asp.net-identity
ASP.NET Identity's default Password Hasher - How does it work and is it secure?

I am wondering wether the Password Hasher that is default implemented in the UserManager that comes with MVC 5 and ASP.…

c# asp.net security passwords asp.net-identity
Adding ASP.NET MVC5 Identity Authentication to an existing project

I have seen lots of similar pages on the web, but most of them use a new project instead of …

asp.net asp.net-mvc authentication asp.net-identity owin