如果AuthenticationService.isLoggedIn()
的结果为真,我如何获取登录用户的名称?
感谢。
答案 0 :(得分:1)
通常我会从ServiceSecurityContext.Current中找到WCF安全信息。尝试ServiceSecurityContext.Current.PrimaryIdentity
答案 1 :(得分:0)
您是否尝试过查看Thead.CurrentPrincipal?
答案 2 :(得分:0)
ServiceSecurityContext.Current.WindowsIdentity.Name
答案 3 :(得分:0)
WebContext.Current.Authentication
?