When is the earliest point in which I can access HttpContext.User?

link|improve this question

How could it be available before authentication? – John Saunders Jul 27 '09 at 19:46
feedback

1 Answer

up vote 2 down vote accepted

You could use the AuthenticateRequest event of the HttpApplication. Here is some sample code:

public class MyHttpModule : IHttpModule
{
    public void Init(HttpApplication context)
    {
        context.AuthenticateRequest += context_AuthenticateRequest;
    }

    void context_AuthenticateRequest(object sender, EventArgs e)
    {
        var application = (HttpApplication) sender;
        var name = application.Context.User.Identity.Name;
    }

    public void Dispose()
    {

    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.