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

An Encog cloud request. Sends a request to the Encog cloud and handles the response.
Показать файл Открыть проект Примеры использования класса

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

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

Приватные методы

Метод Описание
HandleResponse ( String contents ) : void

Handle the cloud response.

ProcessCloud ( ReadXML xml ) : void

Process the cloud request.

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

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

Get a response property.
public GetResponseProperty ( String key ) : String
key String The key.
Результат String

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

Perform a GET request.
public PerformURLGET ( bool async, String url ) : void
async bool True if this request should be asynchronous.
url String The URL.
Результат void

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

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

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

Perform a post.
public PerformURLPOST ( string service, Stream stream ) : void
service string The URL to post to.
stream Stream The stream to post.
Результат void