C# Класс Encog.Cloud.EncogCloud

Encapsulates an Encog cloud task.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

BeginTask() публичный Метод

Begin a task with the specified name.
public BeginTask ( String name ) : CloudTask
name String The name of the task to begin.
Результат CloudTask

Connect() публичный Метод

Connect to the Encog cloud.
public Connect ( String uid, String pwd ) : void
uid String The user id.
pwd String The password.
Результат void

ConstructService() публичный Метод

Construct a string that connects to the specified service.
public ConstructService ( String service ) : String
service String The service to connect to.
Результат String

EncogCloud() публичный Метод

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.
Результат System

GetPublishedTextFile() публичный Метод

Get a published text file.
public GetPublishedTextFile ( String publishedPath ) : String
publishedPath String The path.
Результат String

Logout() публичный Метод

Logout of the specified session.
public Logout ( ) : void
Результат void

PublishFile() публичный Метод

Publish the specified file.
public PublishFile ( Stream stream, String publishedPath ) : void
stream Stream The stream.
publishedPath String Where to publish the file.
Результат void

PublishFile() публичный Метод

Publixh a file.
public PublishFile ( String file, String publishedPath ) : void
file String The file.
publishedPath String The path to publish to.
Результат void

ValidateSession() публичный Метод

Validate the session.
public ValidateSession ( bool failOnError ) : void
failOnError bool True if an exception should be thrown on error.
Результат void