C# Class Encog.Cloud.EncogCloud

Encapsulates an Encog cloud task.
Afficher le fichier Open project: encog/encog-silverlight-core Class Usage Examples

Méthodes publiques

Méthode Description
BeginTask ( String name ) : CloudTask

Begin a task with the specified name.

Connect ( String uid, String pwd ) : void

Connect to the Encog cloud.

ConstructService ( String service ) : String

Construct a string that connects to the specified service.

EncogCloud ( String server ) : System

Construct an Encog cloud connection. The connection will not be established until the connect method is called.

GetPublishedTextFile ( String publishedPath ) : String

Get a published text file.

Logout ( ) : void

Logout of the specified session.

PublishFile ( Stream stream, String publishedPath ) : void

Publish the specified file.

PublishFile ( String file, String publishedPath ) : void

Publixh a file.

ValidateSession ( bool failOnError ) : void

Validate the session.

Method Details

BeginTask() public méthode

Begin a task with the specified name.
public BeginTask ( String name ) : CloudTask
name String The name of the task to begin.
Résultat CloudTask

Connect() public méthode

Connect to the Encog cloud.
public Connect ( String uid, String pwd ) : void
uid String The user id.
pwd String The password.
Résultat void

ConstructService() public méthode

Construct a string that connects to the specified service.
public ConstructService ( String service ) : String
service String The service to connect to.
Résultat String

EncogCloud() public méthode

Construct an Encog cloud connection. The connection will not be established until the connect method is called.
public EncogCloud ( String server ) : System
server String The server to connect to.
Résultat System

GetPublishedTextFile() public méthode

Get a published text file.
public GetPublishedTextFile ( String publishedPath ) : String
publishedPath String The path.
Résultat String

Logout() public méthode

Logout of the specified session.
public Logout ( ) : void
Résultat void

PublishFile() public méthode

Publish the specified file.
public PublishFile ( Stream stream, String publishedPath ) : void
stream Stream The stream.
publishedPath String Where to publish the file.
Résultat void

PublishFile() public méthode

Publixh a file.
public PublishFile ( String file, String publishedPath ) : void
file String The file.
publishedPath String The path to publish to.
Résultat void

ValidateSession() public méthode

Validate the session.
public ValidateSession ( bool failOnError ) : void
failOnError bool True if an exception should be thrown on error.
Résultat void