在标准框架中,我们可以 context.user.Request.ServerVariables.Get("AUTH_USER"); 但是如何访问 dot net core 中的类似变量
问问题
333 次
1 回答
0
您需要使用Features,看来您需要IServerVariablesFeature
您的代码将如下所示:
var svf = httpContext.Features.Get<IServerVariablesFeature>();
var authUser = svf == null ? "No feature :( Do you have IIS?" : svf["AUTH_USER"];
于 2020-03-16T16:26:04.313 回答