The methods of System.IO.StreamReader are listed below. For a list of all members, see the StreamReader Members list.
See Also: Inherited members from System.IO.TextReader
overrideClose() Closes the current instance of System.IO.StreamReader , releasing any system resources associated with it.DiscardBufferedData() Allows a System.IO.StreamReader to discard its buffered data. overridePeek() : int Returns the next character in the underlying stream without advancing the position of the System.IO.StreamReader in the stream. overrideRead() : int Reads the next character from the input stream and advances the character position by one character. overrideRead(char[], int, int) : int Reads a maximum of count characters from the current stream into buffer, beginning at index. overrideReadLine() : string Reads a line of characters from the current stream and returns the data as a string. overrideReadToEnd() : string Reads the stream from the current position to the end of the stream.
overrideDispose(bool) Releases the unmanaged resources used by the System.IO.StreamReader and optionally releases the managed resources.