.net – 使用impersonate = true时如何在IIS中获取当前应用程序池用户?

前端之家收集整理的这篇文章主要介绍了.net – 使用impersonate = true时如何在IIS中获取当前应用程序池用户?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在.net中托管的网站如何获得网站运行的当前用户.即,应用程序池用户不是访问该站点的当前用户.

使用Windows集成和模拟.

<authentication mode="Windows"/>
<identity impersonate="true"/>
要在托管代码中恢复为应用池用户,您可以执行以下操作:
using (WindowsIdentity.Impersonate(IntPtr.Zero)) 
{
   //This code executes under app pool user
}
原文链接:https://www.f2er.com/windows/365466.html

猜你在找的Windows相关文章