C# Class Encog.Persist.Persistors.Generic.XML2Object

A generic class used to take an XML segment and produce an object for it. Some of the Encog persistors make use of this class. The Encog generic persistor makes use of this class.
Show file Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
Load ( ReadXML xmlIn, IEncogPersistedObject target ) : void

Load an object from XML.

Private Methods

Method Description
LoadActualObject ( FieldInfo objectField, Object target ) : void

Load an object.

LoadCollection ( IList collection ) : void

Load a collection.

LoadObject ( FieldInfo objectField, Object parent ) : Object

Load an object and handle reference if needed.

SetFieldValue ( FieldInfo field, Object target, String value ) : void

Set a field value.

Method Details

Load() public method

Load an object from XML.
public Load ( ReadXML xmlIn, IEncogPersistedObject target ) : void
xmlIn Encog.Parse.Tags.Read.ReadXML The XML reader.
target IEncogPersistedObject The object to load.
return void