StructureMap, Autofac SimpleInjector.
Autofac :
builder.Register(c => HttpContext.Current.GetOwinContext().Authentication).As<IAuthenticationManager>();
SimpleInjector :
container.RegisterPerWebRequest(() => HttpContext.Current.GetOwinContext().Authentication);
StructureMap, , - :
ForRequestedType<IAuthenticationManager>()
.TheDefaultIs(() => HttpContext.Current.GetOwinContext().Authentication)