up vote 9 down vote favorite
share [g+] share [fb]

What is the purpose/meaning of the Version property on a FormsAuthenticationTicket?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Just storing the ticket version number, you can understand the structure of the ticket by this value. It stores 1 for asp.net 1.1 and 2 for asp.net 2.0. Maybe in the future Microsoft will add some extra fields to the ticket then the version number will be 3.0. This number can be used by another software to differentiate tickets.

link|improve this answer
feedback

The docs are less than enlightening on this one, though the default version number did change from 1 to 2 with ASP.NET 2.0.

Reflector didn't turn up any interesting uses of it either, other than keeping it alive on renews. My guess is that it's for "future use".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.