XMLXMLDeserializeFromStringT(String, T, Boolean, Boolean) Method

Deserialize a xml string with PCBI standard settings.

Definition

Namespace: PCBI.Automation.IO
Assembly: PCB-Investigator (in PCB-Investigator.exe) Version: 0
C#
public static bool XMLDeserializeFromString<T>(
	string serializedXMLString,
	ref T deserializedbject,
	bool suppressUserNotifications,
	bool suppressLog
)

Parameters

serializedXMLString  String
UTF8 XML string.
deserializedbject  T
Object to deserialize in this class.
suppressUserNotifications  Boolean
suppress message box if fails
suppressLog  Boolean
suppress error log if fails

Type Parameters

T
Type of deserialized object.

Return Value

Boolean
True if it has worked.

See Also