This documentation is archived and is not being maintained.

IStateFormatter::Deserialize Method

Deserializes an object state graph from its serialized string form.

Namespace:  System.Web.UI
Assembly:  System.Web (in System.Web.dll)

Object^ Deserialize(
	String^ serializedState
)

Parameters

serializedState
Type: System::String
A string that the IStateFormatter deserializes into an initialized object.

Return Value

Type: System::Object
An object that represents the state of an ASP.NET server control.

Use the Deserialize method to reconstitute the state object for an ASP.NET page or server control that has been serialized using the Serialize method.

The following code example demonstrates how the Deserialize method loads view state information. The Load method of the StreamPageStatePersister class uses the IStateFormatter interface inherited from the PageStatePersister class to deserialize view state. This code example is part of a larger example provided for the IStateFormatter interface.

No code example is currently available or this language may not be supported.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: