Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
User.Identity.Name在 ASP.NET MVC 4 中,和有什么区别 WebSecurity.CurrentUserName?我可以互换使用它们吗?
User.Identity.Name
WebSecurity.CurrentUserName
由反射器提供:
public static class WebSecurity { ... public static string CurrentUserName { get { return Context.User.Identity.Name; } } ... }
那么让我们来回答你的问题:
User.Identity.Name和有什么区别WebSecurity.CurrentUserName?
没有任何。
我可以互换使用它们吗?
是的。