C# 클래스 Encog.Cloud.CloudRequest

An Encog cloud request. Sends a request to the Encog cloud and handles the response.
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
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