Click or drag to resize

SerializationTryDeserializeT(Stream, SerializationFormat, T) Method

Attempts to deserialize a serialized Object.

Namespace: GSF
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public static bool TryDeserialize<T>(
	Stream serializedObject,
	SerializationFormat serializationFormat,
	out T deserializedObject
)
View Source

Parameters

serializedObject  Stream
Stream containing the serialized Object that is to be deserialized.
serializationFormat  SerializationFormat
SerializationFormat in which the serializedObject was serialized.
deserializedObject  T
Deserialized Object.

Type Parameters

T
Type of the deserialized Object to be returned.

Return Value

Boolean
trueif deserialization succeeded; otherwise false.
See Also