ConverterReader members
The ConverterReader type is a read-only, forward-only pull mode converter based on the TextReader class.
The ConverterReader type exposes the following members.
Constructors
Name | Description | |
---|---|---|
ConverterReader(Stream, TextConverter) | The ConverterReader constructor constructs a new ConverterReader that converts sourceStream by using converter. | |
ConverterReader(TextReader, TextConverter) | The ConverterReader constructor constructs a new ConverterReader that converts sourceReader by using converter. |
Top
Methods
Name | Description | |
---|---|---|
Dispose | Releases the unmanaged resources used by the ConverterReader and optionally releases the managed resources. (Overrides TextReader.Dispose(Boolean).) | |
Peek | Reads the converted character that will be returned by the next call to the Read method. (Overrides TextReader.Peek().) | |
Read() | The Read method reads the next character from the input stream. (Overrides TextReader.Read().) | |
Read([], Int32, Int32) | The Read method reads count bytes from the input stream, starting at offset, and stores them in buffer. (Overrides TextReader.Read([], Int32, Int32).) |
Top