如何使用 ASP.NET 成员资格在 WPF 中跟踪 CurrentUser

发布于 2024-12-07 16:14:48 字数 244 浏览 0 评论 0原文

我有以下需求。 我正在使用安装到我的数据库中的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花想c 2024-12-14 16:14:48

尝试 System.Security.Principal.WindowsIdentity.GetCurrent() 或 Environment.UserName 属性。

Try System.Security.Principal.WindowsIdentity.GetCurrent() or Environment.UserName property.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文