How to Issue the Claims About the User
This post is part of few introductory blog posts about the identity in DotNet Application. In this post, let’s talk about the process of storing and issuing claims about the user.
More …This post is part of few introductory blog posts about the identity in DotNet Application. In this post, let’s talk about the process of storing and issuing claims about the user.
More …It is pretty common to display the logged-in user in various places in a website. We can create an HTML helper to display the logged-in user’s name.
More …The easiest way to display all the claims that was issued to the current user is to query the Identity property of the IPrincipal interface.
More …It is quite common that we sometimes need to run the application without all the identity server redirection dance at development time. It is possible to assign common identity to all the users running the application locally as follows.
More …In the previous blog post, I described how a 302 Redirect
is issued to the browser when the user requests a page that requires a logged in user. In this post, let’s see how the actual login process works in default MVC template.