2 instantiations of HttpAuthenticationFeature
Microsoft.AspNetCore.Http (1)
DefaultHttpContext.cs (1)
30
private static readonly Func<IFeatureCollection, IHttpAuthenticationFeature> _newHttpAuthenticationFeature = f => new
HttpAuthenticationFeature
();
Microsoft.AspNetCore.Owin (1)
OwinEnvironment.cs (1)
441
{ OwinConstants.Security.User, new FeatureMap<IHttpAuthenticationFeature>(feature => feature.User, ()=> null, (feature, value) => feature.User = Utilities.MakeClaimsPrincipal((IPrincipal)value), () => new
HttpAuthenticationFeature
()) },