使用 Sharepoint API 确定 SharePoint 应用程序池帐户?

发布于 2024-08-23 16:03:44 字数 64 浏览 14 评论 0原文

有没有办法使用 SharePoint API 确定用于应用程序池身份的用户登录名?

谢谢,魔法安迪

Is there a way of determining the user login used for the Application Pool identity using the SharePoint API?

Thanks, MagicAndi

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

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

发布评论

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

评论(2

聽兲甴掵 2024-08-30 16:03:44

这篇文章提供了非常有用的代码片段,用于获取应用程序池身份的用户名:

string sAppPoolUsername = SPContext.Current.Site.WebApplication.ApplicationPool.Username;  

更新
设法将其简化为上面给出的一句话。

This article gives a very useful code snippet to get the application pool identity's username:

string sAppPoolUsername = SPContext.Current.Site.WebApplication.ApplicationPool.Username;  

Update
Managed to bring this down to a one-liner, given above.

烟柳画桥 2024-08-30 16:03:44

一种方法是 - 当您使用 SPSecurity.RunWithElevatedPrivileges 运行代码时,它实际上是在应用程序池的帐户下执行的。此时您所要做的就是查看System.Environment.UserName

然而,我相信有一种更优雅的方式来实现这一点。

One way to do it - when you run your code with SPSecurity.RunWithElevatedPrivileges, it is actually executed under the application pool's account. All you have to do is look at System.Environment.UserName at that moment.

However, I believe there is a more elegant way to achieve this.

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