C# 클래스 Encog.Parse.Tags.Read.ReadTags

파일 보기 프로젝트 열기: encog/encog-silverlight-core

공개 프로퍼티들

프로퍼티 타입 설명
CharBullet int
CharTrademark int
MaxLength int

공개 메소드들

메소드 설명
IsIt ( string name, bool start ) : bool

Checks to see if the next tag is the tag specified.

Read ( ) : int

Read a single character from the HTML source, if this function returns zero(0) then you should call getTag to see what tag was found. Otherwise the value returned is simply the next character found.

ReadTags ( Stream istream ) : System

The constructor should be passed an InputStream that we will parse from.

ReadToTag ( ) : bool

Read until we reach the next tag.

ToString ( ) : string

Returns this object as a string.

보호된 메소드들

메소드 설명
EatWhitespace ( ) : void

Remove any whitespace characters that are next in the InputStream.

ParseAttributeName ( ) : string

Parse an attribute name, if one is present.

ParseString ( ) : string

Called to parse a double or single quote string.

ParseTag ( ) : void

Called when a tag is detected. This method will parse the tag.

비공개 메소드들

메소드 설명
ParseSpecialCharacter ( ) : char

Parse any special characters

PeekEndTag ( IEnumerable name ) : bool

Check to see if the ending tag is present.

메소드 상세

EatWhitespace() 보호된 메소드

Remove any whitespace characters that are next in the InputStream.
protected EatWhitespace ( ) : void
리턴 void

IsIt() 공개 메소드

Checks to see if the next tag is the tag specified.
public IsIt ( string name, bool start ) : bool
name string The name of the tag desired.
start bool True if a starting tag is desired.
리턴 bool

ParseAttributeName() 보호된 메소드

Parse an attribute name, if one is present.
protected ParseAttributeName ( ) : string
리턴 string

ParseString() 보호된 메소드

Called to parse a double or single quote string.
protected ParseString ( ) : string
리턴 string

ParseTag() 보호된 메소드

Called when a tag is detected. This method will parse the tag.
protected ParseTag ( ) : void
리턴 void

Read() 공개 메소드

Read a single character from the HTML source, if this function returns zero(0) then you should call getTag to see what tag was found. Otherwise the value returned is simply the next character found.
public Read ( ) : int
리턴 int

ReadTags() 공개 메소드

The constructor should be passed an InputStream that we will parse from.
public ReadTags ( Stream istream ) : System
istream Stream A stream to parse from.
리턴 System

ReadToTag() 공개 메소드

Read until we reach the next tag.
public ReadToTag ( ) : bool
리턴 bool

ToString() 공개 메소드

Returns this object as a string.
public ToString ( ) : string
리턴 string

프로퍼티 상세

CharBullet 공개적으로 프로퍼티

The bullet character.
public int CharBullet
리턴 int

CharTrademark 공개적으로 프로퍼티

The bullet character.
public int CharTrademark
리턴 int

MaxLength 공개적으로 프로퍼티

Maximum length string to read.
public int MaxLength
리턴 int