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?