Inside{CurlyBraces}

I read, learn, code and blog

About

Identity Management Visual Studio

© Rasika Weliwita

Newer

How to use Identity in a .NET Web Application - Part 1

15 Feb 2015 • Visual Studio • IAM

In a previous post, I described how does a user is represented inside a DotNet application using Thread.CurentPrinciple property. In this post and next, I will go through the default visual studio 2013 MVC template to see how the identity is set for an MVC application.

More …

How to Use CurrentPrincipal

12 Feb 2015 • Visual Studio • IAM

The user running a .Net application is identified by the Thread.CurrentPrincipal property of the running thread. You can set the CurrentPrincipal at application startup as follows.

More …