Shared Cache is high performance distributed and replication cache system built for .Net applications running in server farms.
Desirializes the given type.

Namespace:  SharedCache.WinServiceCommon.Formatters
Assembly:  SharedCache.WinServiceCommon (in SharedCache.WinServiceCommon.dll) Version: 3.0.5.1 (3.0.5.1)

Syntax

C#
public static T BinaryDeSerialize<T>(
	byte[] serializedObject
)
Visual Basic (Declaration)
Public Shared Function BinaryDeSerialize(Of T) ( _
	serializedObject As Byte() _
) As T
Visual C++
public:
generic<typename T>
static T BinaryDeSerialize(
	array<unsigned char>^ serializedObject
)

Parameters

serializedObject
Type: array< System..::.Byte >[]()[]
The serialized object. A array<Byte>[]()[] Object.

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:SharedCache.WinServiceCommon.Formatters.Serialization.BinaryDeSerialize``1(System.Byte[])"]

Return Value

A T Object.

Remarks

[Missing <remarks> documentation for "M:SharedCache.WinServiceCommon.Formatters.Serialization.BinaryDeSerialize``1(System.Byte[])"]

See Also