WCF RIA 服务 AuthenticationDomainService 从用户类获取附加参数

发布于 2024-11-10 11:53:13 字数 167 浏览 1 评论 0原文

AuthenticationDomainService 继承基类 AuthenticationBase <用户>。在用户中我添加了附加字段。我可以使用 HttpContext.Current.User.Identity.Name 获取经过身份验证的用户的名称。我怎样才能获得我的额外财产?我不使用会员提供商。

AuthenticationDomainService inherit base class AuthenticationBase < User >. In User I have added additional field. I can get name of authenticated user using HttpContext.Current.User.Identity.Name. How Can I get my additional property? I dont use membership provider.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

你的呼吸 2024-11-17 11:53:13

您可以通过WebContext.Current.User获取它。
希望这有帮助。

//编辑:
在服务器端,
YourDomainAuthenticationService.GetAuthenticatedUser(IPrincipalprincipal); 应该返回您需要的内容。

you can get it through WebContext.Current.User.
hope this helps.

//edit:
On the server side,
YourDomainAuthenticationService.GetAuthenticatedUser(IPrincipal principal); should return what you need.

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