CsvSerializerTDeserialize Method (StreamReader) |
Deserializes a collection of objects using the data that is accessible through the specified stream reader.
Namespace:
Enkoni.Framework.Serialization
Assembly:
Enkoni.Framework.Serialization (in Enkoni.Framework.Serialization.dll) Version: 1.3.0.1
Syntaxprotected override ICollection<T> Deserialize(
StreamReader reader
)
Protected Overrides Function Deserialize (
reader As StreamReader
) As ICollection(Of T)
protected:
virtual ICollection<T>^ Deserialize(
StreamReader^ reader
) override
abstract Deserialize :
reader : StreamReader -> ICollection<'T>
override Deserialize :
reader : StreamReader -> ICollection<'T>
Parameters
- reader
- Type: System.IOStreamReader
The object that gives access to the underlying stream.
Return Value
Type:
ICollectionTThe collection of deserialized objects.
See Also