I'm having some trouble finding a way to do this. What I'm trying to do is implement an MVC3 Portable Area to handle user authentication\logins. I'd like to keep this as a NuGet package to mimize the configuration steps in getting everything wired up.

Unfortunately, I can't figure out how to wire to a Global.asax method without doing it from the Global.asax file. Specifically, I want to use the FormsAuthentication_OnAuthenticate method, as I replace IPrincipal with one of my own, much like the example does. Is there some way to get a current instance of the FormsAuthenticationModule in code?

public void FormsAuthentication_OnAuthenticate(object sender, FormsAuthenticationEventArgs args)
{
  if (FormsAuthentication.CookiesSupported)
  {
    if (Request.Cookies[FormsAuthentication.FormsCookieName] != null)
    {
      try
      {
        FormsAuthenticationTicket ticket = FormsAuthentication.Decrypt(
          Request.Cookies[FormsAuthentication.FormsCookieName].Value);

        args.User = new System.Security.Principal.GenericPrincipal(
          new Samples.AspNet.Security.MyFormsIdentity(ticket),
          new string[0]);
      }
      catch (Exception e)
      {
        // Decrypt method failed.
      }
    }
  }
  else
  {
    throw new HttpException("Cookieless Forms Authentication is not " +
                            "supported for this application.");
  }
}
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.