Search code examples
asp.netauthenticationsystem.web

Get Windows Username in ASP.NET without System.Web


I have a reporting dll that is used in ASP.NET (Windows Authentication) and winforms projects. Sometimes it needs the username so if it was running in ASP.NET it would use:

System.Web.HttpContext.Current.User.Identity.Name;

and in windows

WindowsIdentity.GetCurrent().Name

Now I am trying to move to .NET 4 Client Profile so I need to avoid the System.Web reference in the reporting dll. Is there an alternative way to get the Windows Username for when the dll is running in ASP.NET which won't use System.Web. The only way I can currently see to avoid System.Web is to pass the Username as a parameter which will be a pain to adjust for in every report.


Solution

  • Maybe you can use the CurrentPrincipal property of the Thread class:

    using System.Threading;
    
    string userName = Thread.CurrentPrincipal.Identity.Name;