1

User.Identity.Name在 ASP.NET MVC 4 中,和有什么区别 WebSecurity.CurrentUserName?我可以互换使用它们吗?

4

1 回答 1

5

由反射器提供:

public static class WebSecurity
{
    ...

    public static string CurrentUserName
    {
        get
        {
            return Context.User.Identity.Name;
        }
    }

    ...
}     

那么让我们来回答你的问题:

User.Identity.Name和有什么区别WebSecurity.CurrentUserName

没有任何。

我可以互换使用它们吗?

是的。

于 2013-02-03T18:28:27.507 回答