C# Class Encog.EncogFramework

Main Encog class, does little more than provide version information. Also used to hold the ORM session that Encog uses to work with Hibernate.
Afficher le fichier Open project: encog/encog-silverlight-core

Méthodes publiques

Свойство Type Description
EncogFileVersion string
PLATFORM string
Version string

Méthodes publiques

Méthode Description
RegisterPlugin ( EncogPluginBase plugin ) : void

Register a plugin. If this plugin provides a core service, such as calculation or logging, this will remove the old plugin.

Shutdown ( ) : void

Shutdown Encog.

UnregisterPlugin ( EncogPluginBase plugin ) : void

Unregister a plugin. If you unregister the current logging or calc plugin, a new system one will be created. Encog will crash without a logging or system plugin.

Private Methods

Méthode Description
EncogFramework ( ) : System

Private constructor.

Method Details

RegisterPlugin() public méthode

Register a plugin. If this plugin provides a core service, such as calculation or logging, this will remove the old plugin.
public RegisterPlugin ( EncogPluginBase plugin ) : void
plugin EncogPluginBase The plugin to register.
Résultat void

Shutdown() public méthode

Shutdown Encog.
public Shutdown ( ) : void
Résultat void

UnregisterPlugin() public méthode

Unregister a plugin. If you unregister the current logging or calc plugin, a new system one will be created. Encog will crash without a logging or system plugin.
public UnregisterPlugin ( EncogPluginBase plugin ) : void
plugin EncogPluginBase
Résultat void

Property Details

EncogFileVersion public_oe static_oe property

The encog file version. This determines of an encog file can be read. This is simply an integer, that started with zero and is incramented each time the format of the encog data file changes.
public static string EncogFileVersion
Résultat string

PLATFORM public_oe static_oe property

The platform.
public static string PLATFORM
Résultat string

Version public_oe static_oe property

The current engog version, this should be read from the properties.
public static string Version
Résultat string