1 //------------------------------------------------------------------------------
2 // <copyright file="IStateFormatter.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //------------------------------------------------------------------------------
6 
7 namespace System.Web.UI {
8 
9     using System;
10 
11     public interface IStateFormatter {
12 
Deserialize(string serializedState)13         object Deserialize(string serializedState);
14 
Serialize(object state)15         string Serialize(object state);
16     }
17 }
18