在ASP.NET MVC 4中,User.Identity.Name
和WebSecurity.CurrentUserName
之间有什么区别?我可以互换使用吗?
答案 0 :(得分:5)
礼貌反思:
public static class WebSecurity
{
...
public static string CurrentUserName
{
get
{
return Context.User.Identity.Name;
}
}
...
}
让我们回答你的问题:
User.Identity.Name
和WebSecurity.CurrentUserName
之间有什么区别?
无。
我可以互换使用吗?
是