C# Class Encog.Cloud.AsynchronousCloudRequest

An asynchronous cloud request is set to the cloud, but we do not require a reply. This allows status updates to be executed in a separate therad without the need to wait.
Exibir arquivo Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
AsynchronousCloudRequest ( String url ) : System

Construct the cloud request. Used for a simple GET request.

AsynchronousCloudRequest ( String url, String>.IDictionary param ) : System

Construct the cloud request. Used for a POST request.

Run ( ) : void

Ran by the thread to perform the request.

Method Details

AsynchronousCloudRequest() public method

Construct the cloud request. Used for a simple GET request.
public AsynchronousCloudRequest ( String url ) : System
url String The URL this request is to go to.
return System

AsynchronousCloudRequest() public method

Construct the cloud request. Used for a POST request.
public AsynchronousCloudRequest ( String url, String>.IDictionary param ) : System
url String The URL this request goes to.
param String>.IDictionary The POST params.
return System

Run() public method

Ran by the thread to perform the request.
public Run ( ) : void
return void