标签: asp.net vb.net windows-applications httpcontext
根据我的研究,我认为HttpContext不能用于Windows应用程序。 我想在我的Windows应用程序中使用等效的HttpContext来实现类似的东西,例如:
Dim userName = HttpContext.Current.User.Identity.Name
答案 0 :(得分:2)
Environment.Username应为当前登录的用户执行操作,WindowsIdentity.GetCurrent()将获取应用程序线程的用户。
Environment.Username
WindowsIdentity.GetCurrent()