C# Class clojure.lang.PushbackInputStream

Inheritance: Stream, IDisposable
显示文件 Open project: aaronc/clojure-clr

Protected Properties

Property Type Description
_hasUnread bool
_unreadByte byte

Public Methods

Method Description
Close ( ) : void
Flush ( ) : void
PushbackInputStream ( Stream stream ) : System
Seek ( long offset, SeekOrigin origin ) : long
SetLength ( long value ) : void
Unread ( byte b ) : void
Write ( byte buffer, int offset, int count ) : void

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Private Methods

Method Description
Read ( byte buffer, int offset, int count ) : int

Method Details

Close() public method

public Close ( ) : void
return void

Dispose() protected method

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

Flush() public method

public Flush ( ) : void
return void

PushbackInputStream() public method

public PushbackInputStream ( Stream stream ) : System
stream Stream
return System

Seek() public method

public Seek ( long offset, SeekOrigin origin ) : long
offset long
origin SeekOrigin
return long

SetLength() public method

public SetLength ( long value ) : void
value long
return void

Unread() public method

public Unread ( byte b ) : void
b byte
return void

Write() public method

public Write ( byte buffer, int offset, int count ) : void
buffer byte
offset int
count int
return void

Property Details

_hasUnread protected_oe property

protected bool _hasUnread
return bool

_unreadByte protected_oe property

protected byte _unreadByte
return byte