我想获取服务器进程的身份。这是一个 MVC 4/Razor 项目。这就是我所拥有的:
@using System.Diagnostics
<div>
The identity running this view is @Thread.CurrentPrincipal.Identity
</div>
但是我收到一个错误,说名称 Thread 不存在...
我想获取服务器进程的身份。这是一个 MVC 4/Razor 项目。这就是我所拥有的:
@using System.Diagnostics
<div>
The identity running this view is @Thread.CurrentPrincipal.Identity
</div>
但是我收到一个错误,说名称 Thread 不存在...