Click or drag to resize
SerializationUtilsFromMemoryStreamT Method
Deserializes an object of the specified type from the specified memory stream.

Namespace: Slash.Serialization.Utils
Assembly: Slash.Serialization (in Slash.Serialization.dll) Version: 1.0.6018.40176
Syntax
public static T FromMemoryStream<T>(
	MemoryStream memoryStream
)

Parameters

memoryStream
Type: System.IOMemoryStream
Memory stream to get the object from.

Type Parameters

T
Expected type in memory stream.

Return Value

Type: T
Deserialized object.
See Also