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.244-beta+c33f622c070b2c1078a06bcb41bdeb4c19d19a0b
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