This documentation is archived and is not being maintained.

SessionStateItemCollection::Deserialize Method

Creates a SessionStateItemCollection collection from a storage location that is written to using the Serialize method.

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

public:
static SessionStateItemCollection^ Deserialize(
	BinaryReader^ reader
)

Parameters

reader
Type: System.IO::BinaryReader
The BinaryReader used to read the serialized collection from a stream or encoded string.

Return Value

Type: System.Web.SessionState::SessionStateItemCollection
A SessionStateItemCollection collection populated with the contents from a storage location that is written to using the Serialize method.

ExceptionCondition
HttpException

The session state information is invalid or corrupted

The Deserialize method can be used to read the contents of a SessionStateItemCollection collection from the session store.

To write the contents of a SessionStateItemCollection object to the session store, use the Serialize method.

The following code example creates a SessionStateItemCollection collection from a file that was created using the Serialize method.

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: