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

Serializes and object

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

Syntax

C#
public static bool Serialize(
	Object o,
	ref StringBuilder sb,
	bool isFormatted
)
Visual Basic (Declaration)
Public Shared Function Serialize ( _
	o As Object, _
	ByRef sb As StringBuilder, _
	isFormatted As Boolean _
) As Boolean
Visual C++
public:
static bool Serialize(
	Object^ o, 
	StringBuilder^% sb, 
	bool isFormatted
)

Parameters

o
Type: System..::.Object
The object to be serialized
sb
Type: System.Text..::.StringBuilder%
The stringbuffer where the serialized object is to be written
isFormatted
Type: System..::.Boolean
true if the output xml needs to be formatted

Return Value

See Also