|
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: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.244-beta+c33f622c070b2c1078a06bcb41bdeb4c19d19a0b
Syntax[ObsoleteAttribute("This method will be removed in future builds, use the Deserialize() method instead.")]
public static bool TryGetObject(
byte[] serializedObject,
out Object deserializedObject
)
<ObsoleteAttribute("This method will be removed in future builds, use the Deserialize() method instead.")>
Public Shared Function TryGetObject (
serializedObject As Byte(),
<OutAttribute> ByRef deserializedObject As Object
) As Boolean
[<ObsoleteAttribute("This method will be removed in future builds, use the Deserialize() method instead.")>]
static member TryGetObject :
serializedObject : byte[] *
deserializedObject : Object byref -> bool
GSF.Serialization.TryGetObject = function(serializedObject, deserializedObject);
View SourceParameters
- 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
BooleanA
Boolean which indicates whether the deserialization process was successful.
See Also