iText 8.0.2 API
iText.Commons.Utils.FilterReader Class Reference

Abstract class for reading filtered character streams. The abstract class More...

Inheritance diagram for iText.Commons.Utils.FilterReader:
iText.Commons.Utils.PushbackReader iText.Kernel.XMP.Impl.FixASCIIControlsReader

Public Member Functions

override int  Read ()
  Reads a single character. More...
 
override int  Read (char[] cbuf, int off, int len)
  Reads characters into a portion of an array. More...
 

Protected Member Functions

  FilterReader (TextReader inp)
 
override void  Dispose (bool disposing)
 

Protected Attributes

TextReader  inp
 

Detailed Description

Abstract class for reading filtered character streams. The abstract class

FilterReader itself provides default methods that pass all requests to the contained stream. Subclasses of FilterReader should override some of these methods and may also provide additional methods and fields.

Member Function Documentation

◆ Read() [1/2]

override int iText.Commons.Utils.FilterReader.Read ( )
inline

Reads a single character.

◆ Read() [2/2]

override int iText.Commons.Utils.FilterReader.Read ( char[]  cbuf,
int  off,
int  len 
)
inline

Reads characters into a portion of an array.