In ASP.NET 5 MVC 6 RC1 how do I retrieve AuthenticationProperties
from within a controller or from a filter? HttpContext.Authentication
does't seem to have this functionality.
I thought about registering an CookieAuthenticationEvents.OnValidatePrincipal
handler and then using the Properties
property on the CookieValidatePrincipalContext
argument. Then I could store those AuthenticationProperties
in the request cache so that later I'm able to get things like IssuedUtc
.
Is there a better solution where I don't need to store this myself?
I'm not using ASP.NET Identity but the cookie middleware as standalone.