C# Class Encog.Persist.EncogMemoryCollection

A memory based collection of Encog objects. Does not use the more complex temp file structure like EncogPersistedCollection, but also can't handle gigantic files. This class can load and save from/to Encog EG files. This class can be very useful in the Silverlight version of Encog, which does not support the EncogPersistedCollection class.
Inheritance: IEncogCollection
Afficher le fichier Open project: encog/encog-silverlight-core

Méthodes publiques

Свойство Type Description
Contents IEncogPersistedObject>.IDictionary

Méthodes publiques

Méthode Description
Add ( string name, IEncogPersistedObject obj ) : void
BuildDirectory ( ) : void
Clear ( ) : void
Delete ( DirectoryEntry o ) : void
Delete ( string key ) : void
Exists ( string key ) : bool
Find ( DirectoryEntry entry ) : IEncogPersistedObject
Find ( string key ) : IEncogPersistedObject
Load ( IPersistenceLocation location ) : void

Load the contents of a location.

Save ( IPersistenceLocation location ) : void

Save the contents of this collection to a location.

UpdateProperties ( string name, string newName, string desc ) : void

Method Details

Add() public méthode

public Add ( string name, IEncogPersistedObject obj ) : void
name string
obj IEncogPersistedObject
Résultat void

BuildDirectory() public méthode

public BuildDirectory ( ) : void
Résultat void

Clear() public méthode

public Clear ( ) : void
Résultat void

Delete() public méthode

public Delete ( DirectoryEntry o ) : void
o DirectoryEntry
Résultat void

Delete() public méthode

public Delete ( string key ) : void
key string
Résultat void

Exists() public méthode

public Exists ( string key ) : bool
key string
Résultat bool

Find() public méthode

public Find ( DirectoryEntry entry ) : IEncogPersistedObject
entry DirectoryEntry
Résultat IEncogPersistedObject

Find() public méthode

public Find ( string key ) : IEncogPersistedObject
key string
Résultat IEncogPersistedObject

Load() public méthode

Load the contents of a location.
public Load ( IPersistenceLocation location ) : void
location IPersistenceLocation The location to load from.
Résultat void

Save() public méthode

Save the contents of this collection to a location.
public Save ( IPersistenceLocation location ) : void
location IPersistenceLocation The location to save to.
Résultat void

UpdateProperties() public méthode

public UpdateProperties ( string name, string newName, string desc ) : void
name string
newName string
desc string
Résultat void

Property Details

Contents public_oe property

The contents of this collection.
public IDictionary Contents
Résultat IEncogPersistedObject>.IDictionary