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 |
Perform a POST to the cloud.
|
|
PerformURLPOST ( string service, Stream stream ) : void |
Perform a post.
|
Method | Description | |
---|---|---|
HandleResponse ( String contents ) : void |
Handle the cloud response.
|
|
ProcessCloud ( |
Process the cloud request.
|
public GetResponseProperty ( String key ) : String | ||
key | String | The key. |
return | String |
public PerformURLGET ( bool async, String url ) : void | ||
async | bool | True if this request should be asynchronous. |
url | String | The URL. |
return | void |
public PerformURLPOST ( bool async, String service, String>.IDictionary |
||
async | bool | True if this request should be asynchronous. |
service | String | The service. |
args | String>.IDictionary | The POST arguments. |
return | void |
public PerformURLPOST ( string service, Stream stream ) : void | ||
service | string | The URL to post to. |
stream | Stream | The stream to post. |
return | void |