在我的一个助手中,我需要检查用户身份.
如何让User.Identity在那里工作?
默认情况下,它位于接口IPrincipal中的System.Security.Principal中
public static bool MyHelper(HtmlHelper helper) { var userIdentity = helper.ViewContext.HttpContext.User.Identity; // more code }