I am trying to serialize and deserialize the event validation store. I have used code on MSDN to do the same with the viewstate. I cannot seem to get the data out of the EventValidation object.\[code\]System.Web.UI.LosFormatter los = new System.Web.UI.LosFormatter();var t = los.Deserialize("/wEWBQKc7/W6AwK6gbzTBAK7gbzTBAK9gbzTBAKP5u6DCA==")HashSet<object> h = new HashSet<object>();foreach (object d in t){ DoSomething()}\[/code\]System.Web.UI.EventValidationStore is the object type (?)I have tried to use a hash set, a list, etc. I am new to this, and it is was out of what I know how do do, but would love to learn it. The error I get is: "foreach statement cannot operate on variables of type 'object' because 'object' does not contain a public definition for 'GetEnumerator'"I could not find anything on MSDN about the EventValidationStore.I apologize if this is a confusing post, I am just not sure how to ask it.Summary:I need to be able to decode/deserialize and encode/serialize the eventvalidation base64 string in .NET.