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

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

공개 메소드들

메소드 설명
FindTag ( String name, bool beginTag ) : bool

Advance until the specified tag is found.

ReadIntToTag ( ) : int

Read an integer that is contained between the current position, and the next tag.

ReadPropertyBlock ( ) : String>.IDictionary

Read all property data until an end tag, which corrisponds to the current tag, is found. The properties found will be returned in a map.

ReadTextToTag ( ) : String

Read all text between the current position and the next tag.

ReadXML ( Stream istream ) : System

Construct an XML reader.

메소드 상세

FindTag() 공개 메소드

Advance until the specified tag is found.
public FindTag ( String name, bool beginTag ) : bool
name String The name of the tag we are looking for.
beginTag bool True if this is a begin tage, false otherwise.
리턴 bool

ReadIntToTag() 공개 메소드

Read an integer that is contained between the current position, and the next tag.
public ReadIntToTag ( ) : int
리턴 int

ReadPropertyBlock() 공개 메소드

Read all property data until an end tag, which corrisponds to the current tag, is found. The properties found will be returned in a map.
public ReadPropertyBlock ( ) : String>.IDictionary
리턴 String>.IDictionary

ReadTextToTag() 공개 메소드

Read all text between the current position and the next tag.
public ReadTextToTag ( ) : String
리턴 String

ReadXML() 공개 메소드

Construct an XML reader.
public ReadXML ( Stream istream ) : System
istream Stream The input stream to read from.
리턴 System