C# Class Encog.Parse.Tags.Read.ReadXML

Inheritance: ReadTags
Show file Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
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.

Method Details

FindTag() public method

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.
return bool

ReadIntToTag() public method

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

ReadPropertyBlock() public method

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
return String>.IDictionary

ReadTextToTag() public method

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

ReadXML() public method

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