I'm running ASP .NET Core dll on IIS (with AspNetCoreModule)
With previous ASP .NET I could get the user identity name with:
HttpContext.Current.User.Identity.Name
since it was called directly in IIS context.
With ASP .NET Core the result is null for:
this.Request.User.Identity.Name
It seems that IIS is not forwarding it or maybe my AspNetCore module doesn't receive it. How can I receive User Identity name?