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

Serialize the object. 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 string Serialize(
	Object o,
	bool isUrlSafe
)
Visual Basic (Declaration)
Public Shared Function Serialize ( _
	o As Object, _
	isUrlSafe As Boolean _
) As String
Visual C++
public:
static String^ Serialize(
	Object^ o, 
	bool isUrlSafe
)

Parameters

o
Type: System..::.Object
The object, should be of the following type Int32, DateTime, String, Double.
isUrlSafe
Type: System..::.Boolean
Notifies that the string is url safe

Return Value

The serialized string

See Also