Click or drag to resize

SerializationGetObjectT(String) Method

Note: This API is now obsolete.

Performs XML deserialization on the XML string and returns the typed object for it.

Namespace: GSF
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.191-beta+925724bd48239ba1d4417fe63f8c4977892ab734
Syntax
[ObsoleteAttribute("This method will be removed in future builds, use the Deserialize() method instead.")]
public static T GetObject<T>(
	string serializedObject
)
View Source

Parameters

serializedObject  String
A String representing the object (serializedObject) to deserialize.

Type Parameters

T
The type of the object to create from the serialized string serializedObject.

Return Value

T
A type T based on serializedObject.
Exceptions
ExceptionCondition
InvalidOperationException An error occurred during deserialization. The original exception is available using the InnerException property.
Remarks
This function will throw an error during deserialization if the input data is invalid, consider using TryGetObject to prevent needing to implement exception handling.
See Also