C# Class iTextSharp.xmp.impl.FilterReader

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. @author Mark Reinhold @since JDK1.1
Inheritance: System.IO.StreamReader
显示文件 Open project: nonorganic/dssnet

Protected Properties

Property Type Description
inp TextReader

Public Methods

Method Description
Close ( ) : void
Read ( ) : int
Read ( char cbuf, int off, int len ) : int

Protected Methods

Method Description
FilterReader ( TextReader inp ) : System.IO

Method Details

Close() public method

public Close ( ) : void
return void

FilterReader() protected method

protected FilterReader ( TextReader inp ) : System.IO
inp TextReader
return System.IO

Read() public method

public Read ( ) : int
return int

Read() public method

public Read ( char cbuf, int off, int len ) : int
cbuf char
off int
len int
return int

Property Details

inp protected_oe property

protected TextReader inp
return TextReader