在 aspnet 应用程序中通过模拟获取 WindowsIdentity 的不同方法
该应用程序正在使用模拟和 Windows 身份验证运行。 我在这三种情况下得到的有什么区别?
System.Threading.Thread.CurrentPrincipal.Identity 作为 WindowsIdentity
WindowsIdentity.GetCurrent()
((HttpContext) context).User.Identity 作为 WindowsIdentity
The app is running using impersonation and windows authentication.
What is the difference of what i've got in the three cases?
System.Threading.Thread.CurrentPrincipal.Identity
as WindowsIdentityWindowsIdentity.GetCurrent()
((HttpContext) context).User.Identity
as WindowsIdentity
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这里您拥有所有不同的可能性。在您的情况下,您将获得所有 3 个相同的内容(域\用户名)
Here you have all the different posibilites. In your case you'll get the same for all 3 (Domain\UserName)