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

Deserialize the xml string to the corresponding object

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

Syntax

C#
public static Object DeserializeXmlString(
	string str,
	Type type
)
Visual Basic (Declaration)
Public Shared Function DeserializeXmlString ( _
	str As String, _
	type As Type _
) As Object
Visual C++
public:
static Object^ DeserializeXmlString(
	String^ str, 
	Type^ type
)

Parameters

str
Type: System..::.String
the string to be deserialized
type
Type: System..::.Type
The type of the object that this string needs to be deserialized to

Return Value

The deserialized object

See Also