C# Class clojure.lang.PushbackTextReader

Inheritance: System.IO.TextReader, IDisposable
Show file Open project: richhickey/clojure-clr Class Usage Examples

Protected Properties

Property Type Description
_baseReader System.IO.TextReader
_hasUnread bool
_unreadChar int

Public Methods

Method Description
Close ( ) : void
Peek ( ) : int
PushbackTextReader ( TextReader reader ) : System
Read ( ) : int
Unread ( int ch ) : void

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Method Details

Close() public method

public Close ( ) : void
return void

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

Peek() public method

public Peek ( ) : int
return int

PushbackTextReader() public method

public PushbackTextReader ( TextReader reader ) : System
reader System.IO.TextReader
return System

Read() public method

public Read ( ) : int
return int

Unread() public method

public Unread ( int ch ) : void
ch int
return void

Property Details

_baseReader protected property

protected TextReader,System.IO _baseReader
return System.IO.TextReader

_hasUnread protected property

protected bool _hasUnread
return bool

_unreadChar protected property

protected int _unreadChar
return int