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.
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
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