ASP.NET 中的 System.Web.HttpContext.Current.User.Identity.Name 与 System.Environment.UserName

发布于 2024-12-26 05:55:02 字数 423 浏览 1 评论 0原文

在 ASP.Net Web 应用程序项目的上下文中,System.Web.HttpContext.Current.User.Identity.NameSystem.Environment.UserName 之间有什么区别?

这是我想要做的代码:

Database myDB = DatabaseFactory.CreateDatabase();
bool IsAuthUser = myDB.ExecuteScalar("procIsAuthorizedUser", System.Environment.UserName);

如果它们在功能上相同,那么在性能方面哪个更好?

这是一个 C# 4.0/ASP.Net Web 应用程序,将在组织内部得到适度使用。谢谢您的回答。

What is the difference between System.Web.HttpContext.Current.User.Identity.Name and System.Environment.UserName in the context of a ASP.Net Web Application Project?

Here's the code of what I'm trying to do:

Database myDB = DatabaseFactory.CreateDatabase();
bool IsAuthUser = myDB.ExecuteScalar("procIsAuthorizedUser", System.Environment.UserName);

If they are functionally identical, which is better in terms of performance?

This is a C# 4.0/ASP.Net web application which will see moderate usage internally in the organization. Thank you for the answers.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小霸王臭丫头 2025-01-02 05:55:02

描述

System.Web.HttpContext.Current.User.Identity.Name

获取或设置当前 HTTP 请求的安全信息。 (您网站上登录用户的姓名)

System.Environment.UserName

获取当前登录 Windows 操作系统的用户的用户名。

更多信息

  • MSDN - HttpContext.User 属性
  • < a href="http://msdn.microsoft.com/en-us/library/system.environment.username.aspx" rel="noreferrer">MSDN - Environment.UserName 属性

Description

System.Web.HttpContext.Current.User.Identity.Name

Gets or sets security information for the current HTTP request. (The Name of the Logged in user on your Website)

System.Environment.UserName

Gets the user name of the person who is currently logged on to the Windows operating system.

More Information

国产ˉ祖宗 2025-01-02 05:55:02

System.Environment.UserName 返回托管您的 Web 应用程序的应用程序池所运行的身份。如果您使用 Windows 身份验证和模拟,那么它将是实际的用户名,但在所有情况下,您最好使用 HTTP 上下文提供的信息。无论哪种方式,都不会影响性能。

System.Environment.UserName returns the identity under which the app pool that hosts your web app is running. If you're using Windows authentication and impersonation then it will be the actual user's name, however in all cases you're better off using the information provided by the HTTP context. There is no performance hit either way.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文