C# Class Encog.Persist.PersistWriter

Utility class for writing Encog persisted class files.
Afficher le fichier Open project: encog/encog-silverlight-core Class Usage Examples

Méthodes publiques

Méthode Description
Begin ( ) : void

Begin an Encog document.

BeginObjects ( ) : void

Begin the objects collection.

Close ( ) : void

Close the writer.

End ( ) : void

End the document.

EndObjects ( ) : void

End the objects collection.

MergeObjects ( IPersistenceLocation location, String skip ) : void

Merge the objects from this collection into the new one. Skip the specified object.

ModifyObject ( IPersistenceLocation location, String name, String newName, String newDesc ) : void

Modify the specified object, such as changing its name or description.

PersistWriter ( IPersistenceLocation location ) : System

Create a writer for the specified location.

WriteHeader ( ) : void

Write the header for the Encog file.

WriteObject ( IEncogPersistedObject obj ) : void

Write an object.

Method Details

Begin() public méthode

Begin an Encog document.
public Begin ( ) : void
Résultat void

BeginObjects() public méthode

Begin the objects collection.
public BeginObjects ( ) : void
Résultat void

Close() public méthode

Close the writer.
public Close ( ) : void
Résultat void

End() public méthode

End the document.
public End ( ) : void
Résultat void

EndObjects() public méthode

End the objects collection.
public EndObjects ( ) : void
Résultat void

MergeObjects() public méthode

Merge the objects from this collection into the new one. Skip the specified object.
public MergeObjects ( IPersistenceLocation location, String skip ) : void
location IPersistenceLocation The location to merge to.
skip String The object to skip.
Résultat void

ModifyObject() public méthode

Modify the specified object, such as changing its name or description.
public ModifyObject ( IPersistenceLocation location, String name, String newName, String newDesc ) : void
location IPersistenceLocation The location of the object being modified.
name String The old name of the object being modified.
newName String The new name of the object being modified.
newDesc String The new description of the object being modified.
Résultat void

PersistWriter() public méthode

Create a writer for the specified location.
public PersistWriter ( IPersistenceLocation location ) : System
location IPersistenceLocation The location.
Résultat System

WriteHeader() public méthode

Write the header for the Encog file.
public WriteHeader ( ) : void
Résultat void

WriteObject() public méthode

Write an object.
public WriteObject ( IEncogPersistedObject obj ) : void
obj IEncogPersistedObject The object to write.
Résultat void