C# 클래스 Encog.Parse.PeekableInputStream

상속: Stream
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
Flush ( ) : void

Not supported.

Peek ( String str ) : bool

Peek ahead and see if the specified string is present.

Peek ( ) : int

Peek at the next character from the stream.

Peek ( int depth ) : int

Peek ahead the specified depth.

PeekableInputStream ( Stream stream ) : System

Construct a peekable input stream based on the specified stream.

Read ( ) : int

Read a single byte.

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

Read bytes from the stream.

Seek ( long offset, SeekOrigin origin ) : long

Not supported.

SetLength ( long v ) : void

Not supported.

Skip ( long count ) : long

Skip the specified number of bytes.

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

Not supported.

비공개 메소드들

메소드 설명
Pop ( ) : byte

메소드 상세

Flush() 공개 메소드

Not supported.
public Flush ( ) : void
리턴 void

Peek() 공개 메소드

Peek ahead and see if the specified string is present.
public Peek ( String str ) : bool
str String The string we are looking for.
리턴 bool

Peek() 공개 메소드

Peek at the next character from the stream.
public Peek ( ) : int
리턴 int

Peek() 공개 메소드

Peek ahead the specified depth.
public Peek ( int depth ) : int
depth int How far to peek ahead.
리턴 int

PeekableInputStream() 공개 메소드

Construct a peekable input stream based on the specified stream.
public PeekableInputStream ( Stream stream ) : System
stream Stream The underlying stream.
리턴 System

Read() 공개 메소드

Read a single byte.
public Read ( ) : int
리턴 int

Read() 공개 메소드

Read bytes from the stream.
public Read ( byte buffer, int offset, int count ) : int
buffer byte The buffer to read the bytes into.
offset int The offset to begin storing the bytes at.
count int How many bytes to read.
리턴 int

Seek() 공개 메소드

Not supported.
public Seek ( long offset, SeekOrigin origin ) : long
offset long
origin SeekOrigin
리턴 long

SetLength() 공개 메소드

Not supported.
public SetLength ( long v ) : void
v long The length.
리턴 void

Skip() 공개 메소드

Skip the specified number of bytes.
public Skip ( long count ) : long
count long The number of bytes to skip.
리턴 long

Write() 공개 메소드

Not supported.
public Write ( byte buffer, int offset, int count ) : void
buffer byte
offset int
count int
리턴 void