/// <summary>
 /// Must run before any code attempt to access <see cref="HttpRequestStorage.Person"/>
 /// </summary>
 protected override void OnAuthentication(AuthenticationContext filterContext)
 {
     HttpRequestStorage.Person = ClaimsIdentityHelper.PersonFromClaimsIdentity(HttpContext.GetOwinContext().Authentication);
     base.OnAuthentication(filterContext);
 }