|
SerializationGetObjectT(String) Method
|
Note: This API is now obsolete.
Performs XML deserialization on the XML string and returns the typed object for it.
Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.205-beta+5ef4169f3b1079d8b163dd363614f656bd140924
Syntax [ObsoleteAttribute("This method will be removed in future builds, use the Deserialize() method instead.")]
public static T GetObject<T>(
string serializedObject
)
<ObsoleteAttribute("This method will be removed in future builds, use the Deserialize() method instead.")>
Public Shared Function GetObject(Of T) (
serializedObject As String
) As T
public:
[ObsoleteAttribute(L"This method will be removed in future builds, use the Deserialize() method instead.")]
generic<typename T>
static T GetObject(
String^ serializedObject
)
[<ObsoleteAttribute("This method will be removed in future builds, use the Deserialize() method instead.")>]
static member GetObject :
serializedObject : string -> 'T
JavaScript does not support generic types or methods.
View SourceParameters
- 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
TA type T based on
serializedObject.
Exceptions Exception | Condition |
---|
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