C# Class LumiSoft.Net.StreamLineReader

Stream line reader.
Afficher le fichier Open project: jeske/StepsDB-alpha Class Usage Examples

Méthodes publiques

Méthode Description
ReadLine ( ) : byte[]

Reads byte[] line from stream. NOTE: Returns null if end of stream reached.

ReadLineString ( ) : string

Reads string line from stream. String is converted with specified Encoding property from byte[] line. NOTE: Returns null if end of stream reached.

StreamLineReader ( Stream strmSource ) : System

Default constructor.

Method Details

ReadLine() public méthode

Reads byte[] line from stream. NOTE: Returns null if end of stream reached.
public ReadLine ( ) : byte[]
Résultat byte[]

ReadLineString() public méthode

Reads string line from stream. String is converted with specified Encoding property from byte[] line. NOTE: Returns null if end of stream reached.
public ReadLineString ( ) : string
Résultat string

StreamLineReader() public méthode

Default constructor.
public StreamLineReader ( Stream strmSource ) : System
strmSource Stream
Résultat System