C# Class Encog.Cloud.CloudRequest

An Encog cloud request. Sends a request to the Encog cloud and handles the response.
Mostrar archivo Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
GetResponseProperty ( String key ) : String

Get a response property.

PerformURLGET ( bool async, String url ) : void

Perform a GET request.

PerformURLPOST ( bool async, String service, String>.IDictionary args ) : void

Perform a POST to the cloud.

PerformURLPOST ( string service, Stream stream ) : void

Perform a post.

Private Methods

Method Description
HandleResponse ( String contents ) : void

Handle the cloud response.

ProcessCloud ( ReadXML xml ) : void

Process the cloud request.

Method Details

GetResponseProperty() public method

Get a response property.
public GetResponseProperty ( String key ) : String
key String The key.
return String

PerformURLGET() public method

Perform a GET request.
public PerformURLGET ( bool async, String url ) : void
async bool True if this request should be asynchronous.
url String The URL.
return void

PerformURLPOST() public method

Perform a POST to the cloud.
public PerformURLPOST ( bool async, String service, String>.IDictionary args ) : void
async bool True if this request should be asynchronous.
service String The service.
args String>.IDictionary The POST arguments.
return void

PerformURLPOST() public method

Perform a post.
public PerformURLPOST ( string service, Stream stream ) : void
service string The URL to post to.
stream Stream The stream to post.
return void