Method | Description | |
---|---|---|
Advance ( String name ) : bool |
Advance to the specified object.
|
|
AdvanceObjectsCollection ( ) : void |
Advance to the objects collection.
|
|
BuildDirectory ( ) : IList |
Build a directory entry list for the file.
|
|
Close ( ) : void |
Close the file.
|
|
PersistReader ( IPersistenceLocation location ) : System |
Construct a persist reader.
|
|
ReadHeader ( ) : string>.IDictionary |
Read an Encog header.
|
|
ReadNextTag ( String name ) : bool |
Read until the next tag of the specified name.
|
|
ReadNextText ( String name ) : String |
Read all text until the specified ending tag is found.
|
|
ReadObject ( String name ) : IEncogPersistedObject |
Read the specific object, search through the objects until its found.
|
|
ReadValue ( String name ) : String |
Read the value in a period delimited string. For example property.name.value.
|
|
SaveModified ( |
Modify the properties of this object.
|
|
SaveTo ( |
Save all objects to the specified steam, skip the one specified by the skip parameter. Do not attempt to understand the structure, just copy.
|
Method | Description | |
---|---|---|
AdvanceObjects ( String name ) : bool |
Once you are in the objects collection, advance to a specific object.
|
|
AdvanceToTag ( String tag ) : bool |
Advance to the specified tag.
|
|
CopyAttributes ( |
Copy all of the attributes to the writer.
|
|
CopyXML ( |
Copy an XML object, no need to know what it contains, just copy it. This way we will not damage unknown objects during a merge.
|
|
SkipObject ( ) : void |
Skip the current object.
|
public Advance ( String name ) : bool | ||
name | String | The name of the object looking for. |
return | bool |
public PersistReader ( IPersistenceLocation location ) : System | ||
location | IPersistenceLocation | The location to use. |
return | System |
public ReadNextTag ( String name ) : bool | ||
name | String | The name searched for. |
return | bool |
public ReadNextText ( String name ) : String | ||
name | String | The tag. |
return | String |
public ReadObject ( String name ) : IEncogPersistedObject | ||
name | String | The name of the object you are looking for. |
return | IEncogPersistedObject |
public ReadValue ( String name ) : String | ||
name | String | The property to read. |
return | String |
public SaveModified ( |
||
xmlOut | The XML writer. | |
targetName | String | The name of the object to change. |
newName | String | The new name of this object. |
newDesc | String | The new description of this object. |
return | void |
public SaveTo ( |
||
xmlOut | The XML writer to save the objects to. | |
skip | String | The object to skip. |
return | void |