|
SerializerLoadT Method (Stream, T, SerializerCompression)
|
Loads an object from a stream.
Namespace:
Accord.IO
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public static T Load<T>(
Stream stream,
out T value,
SerializerCompression compression = SerializerCompression.None
)
Public Shared Function Load(Of T) (
stream As Stream,
<OutAttribute> ByRef value As T,
Optional compression As SerializerCompression = SerializerCompression.None
) As T
Request Example
View SourceParameters
- stream
- Type: System.IOStream
The stream from which the object is to be deserialized. - value
- Type: T
The object to be read. This parameter can be used to avoid the
need of specifying a generic argument to this function. - compression (Optional)
- Type: Accord.IOSerializerCompression
The type of compression to use. Default is None.
Type Parameters
- T
Return Value
Type:
TThe deserialized machine.
See Also