I'm using windows authentication and custom roles. I've extended the WindowsPrincipal because I want to include additional information about the user based on a User class I've added. When I run the application, it sees the CustomPrincipal assigned to the built-in User, but not the additional "user" property I've added. I'm sure I'm doing something really dumb, but this is my first run into the C# ASP world and could really appreciate some help. Here is my custom principal and global.asax
Custom principal:
    public class CustomPrincipal : WindowsPrincipal
{
    List<string> _roles;
    private User thisUser = new User();
    public CustomPrincipal(WindowsIdentity identity)
        : base(identity)
    {
        _roles = new List<string>(Roles.GetRolesForUser());
        user = thisUser.getDarUser(identity.Name);
    }
    public User user { get; private set; }
    public override bool IsInRole(string role)
    {
        if (base.IsInRole(role) || _roles.Contains(role) || _roles.Contains("Admin") || _roles.Contains("Dev"))
        {
            return true;
        }
        else
        {
            return false;
        }
    }
}
And Global.asax:
 protected void Application_AuthorizeRequest(object sender, EventArgs e)
    {
        if (User.Identity.IsAuthenticated)
        {
            IIdentity thisId = User.Identity;
            WindowsIdentity wi = (WindowsIdentity)thisId;
            CustomPrincipal cp = new CustomPrincipal(wi);
            HttpContext.Current.User = cp;
            Thread.CurrentPrincipal = cp;
        }
    }
Thanks again for any direction.
 
    