C# Class Encog.Persist.Persistors.TrainingContinuationPersistor

Allow the TrainingContinuation class to persist.
Inheritance: IPersistor
Datei anzeigen Open project: encog/encog-silverlight-core

Public Methods

Method Description
HandleItem ( ReadXML xmlin ) : void

Handle an item.

HandleItems ( ReadXML xmlin ) : void

Handle loading the items.

Load ( ReadXML xmlin ) : IEncogPersistedObject

Load the object.

Save ( IEncogPersistedObject obj, WriteXML xmlout ) : void

Save the object.

SaveItems ( WriteXML xmlout ) : void

Save items.

Method Details

HandleItem() public method

Handle an item.
public HandleItem ( ReadXML xmlin ) : void
xmlin Encog.Parse.Tags.Read.ReadXML The XML input object.
return void

HandleItems() public method

Handle loading the items.
public HandleItems ( ReadXML xmlin ) : void
xmlin Encog.Parse.Tags.Read.ReadXML The XML input object.
return void

Load() public method

Load the object.
public Load ( ReadXML xmlin ) : IEncogPersistedObject
xmlin Encog.Parse.Tags.Read.ReadXML The XML object to load from.
return IEncogPersistedObject

Save() public method

Save the object.
public Save ( IEncogPersistedObject obj, WriteXML xmlout ) : void
obj IEncogPersistedObject The object to save.
xmlout Encog.Parse.Tags.Write.WriteXML The XML output object.
return void

SaveItems() public method

Save items.
public SaveItems ( WriteXML xmlout ) : void
xmlout Encog.Parse.Tags.Write.WriteXML The XML output object.
return void