Method | Description | |
---|---|---|
Dispose ( ) : void | ||
GetData ( int requestID ) : string |
Gets the post data for the request ID. Post data must be set previously by invoking SetData.
|
|
GetData ( int requestID, |
Gets the post data for requestUri that have a query containing method=post. Post data must be set previously by invoking SetData.
|
|
SetData ( int requestID, string postData ) : void |
Sets the data prior to invoking GetData(int, Uri, string).
|
Method | Description | |
---|---|---|
Dispose ( bool disposing ) : void |
public GetData ( int requestID ) : string | ||
requestID | int | The request ID - usually the process ID of the request. |
return | string |
public GetData ( int requestID, |
||
requestID | int | The request ID - usually the process ID of the request. |
requestUri | The request URI. | |
requestMethod | string | The request method - usually POST or GET. |
return | string |
public SetData ( int requestID, string postData ) : void | ||
requestID | int | The request ID - usually the process ID of the request. |
postData | string | The post data for the GET request. |
return | void |