Click or drag to resize

SerializationTryGetObject(Byte, Object) Method

Note: This API is now obsolete.

Attempts binary deserialization on the byte array and returns the typed object for it.

Namespace: GSF
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
[ObsoleteAttribute("This method will be removed in future builds, use the Deserialize() method instead.")]
public static bool TryGetObject(
	byte[] serializedObject,
	out Object deserializedObject
)
View Source

Parameters

serializedObject  Byte
A Byte array representing the object (serializedObject) to deserialize.
deserializedObject  Object
An Object, passed by reference, that is used to be hold the deserialized object.

Return Value

Boolean
A Boolean which indicates whether the deserialization process was successful.
See Also