FormsIdentity.Ticket.UserData 和身份验证 Ticket.UserData 保持同步

发布于 2024-07-14 02:35:35 字数 300 浏览 6 评论 0原文

在我的 asp.net 网站中。 我将一些数据放入表单身份验证票证的 UserData 部分。 稍后我就可以使用

(FormsIdentity)(HttpContext.Current.User.Identity).Ticket.UserData

我的问题来访问此数据 - 只要身份验证票证有效,此数据是否始终在 FormsIdentity.Ticket.UserData 中可用? 或者我最终需要同步 FormsIdentity.Ticket.UserData 和身份验证票证中的 UserData 吗?

In my asp.net website. I am putting some data into the UserData portion of the forms authentication ticket. Later I am then able to access this data using

(FormsIdentity)(HttpContext.Current.User.Identity).Ticket.UserData

My question is - as long as the authentication ticket is valid, will this data ALWAYS be available in the FormsIdentity.Ticket.UserData? Or will I eventually need to sync the FormsIdentity.Ticket.UserData and the UserData in the authentication ticket?

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

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

发布评论

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

评论(1

半仙 2024-07-21 02:35:35

是的,它是用身份验证票证加密的,因此只要使用同一张票证就会存在。
编辑:如果您要更改数据,您将需要签发新的身份验证票。

Yes, it is encrypted with the authentication ticket, so it will be there as long as the same ticket is used.
Edit: if you are changing the data, you will need to issue a new authentication ticket.

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