C# Класс 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.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Load ( ReadXML xmlIn, IEncogPersistedObject target ) : void

Load an object from XML.

Приватные методы

Метод Описание
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.

Описание методов

Load() публичный Метод

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.
Результат void