C# Class Encog.Cloud.EncogCloud

Encapsulates an Encog cloud task.
Exibir arquivo Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method 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 method

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

Connect() public method

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

ConstructService() public method

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

EncogCloud() public method

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.
return System

GetPublishedTextFile() public method

Get a published text file.
public GetPublishedTextFile ( String publishedPath ) : String
publishedPath String The path.
return String

Logout() public method

Logout of the specified session.
public Logout ( ) : void
return void

PublishFile() public method

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

PublishFile() public method

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

ValidateSession() public method

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