如何使用 ASP.NET 成员资格在 WPF 中跟踪 CurrentUser
我有以下需求。 我正在使用安装到我的数据库中的 ASP.NET 会员资格。 我需要创建一个需要具有登录功能的 WPF 应用程序。 我已导入 System.Web.Security 命名空间,以便可以使用成员资格静态方法验证和创建用户。 我的问题是是否有类似的东西可以跟踪哪个用户被记录(如 ASP.NET 中的 HttpContext.Current.User.Identity)? 除了通过用户名在数据库中搜索用户之外,还有什么方法可以获取用户ID(guid)? 先感谢您
I have the following needs.
I am using ASP.NET Membership installed into my database.
I need to create a WPF application which needs to have login functionality.
I have imported the System.Web.Security namespace so I can validate and create users with Membership static methods.
My question is if there is something similar to keep track which user is logged (like HttpContext.Current.User.Identity in ASP.NET)?
Whats the way to get the userID (guid) other than searching the database for user by username?
Thank you in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 System.Security.Principal.WindowsIdentity.GetCurrent() 或 Environment.UserName 属性。
Try
System.Security.Principal.WindowsIdentity.GetCurrent()
orEnvironment.UserName
property.