[This is preliminary documentation and is subject to change.]

Deserialize the object from the string. The string should have been serialized using the serializer of this class. . Should not be used for any string that is persistent between versions

Namespace:  OfficeClip.Utils
Assembly:  OfficeClip.Utils (in OfficeClip.Utils)
Version: 8.1.1.0

Syntax

C#
public static Object Deserialize(
	string byteArrStr,
	bool isUrlSafe
)
Visual Basic (Declaration)
Public Shared Function Deserialize ( _
	byteArrStr As String, _
	isUrlSafe As Boolean _
) As Object
Visual C++
public:
static Object^ Deserialize(
	String^ byteArrStr, 
	bool isUrlSafe
)

Parameters

byteArrStr
Type: System..::.String
The string array
isUrlSafe
Type: System..::.Boolean

Return Value

The object that is deserialized

See Also