string WebServicePost(String inUrl, String inData)
Description
Performs an ASYNC call to a web URL, using the html POST method.
The response is received in the Callback function OnWebServiceResult().
The returned value is a Unique Identifier that determines the specific web call.
Parameters
The following is a list of parameters the functions receives
Parameter | Type | Description |
---|---|---|
inURL | string | The target URL string |
inData | string | The URL additional data to send for the POST method |
Return Type
string
Overloads
List of overloads for this function
String WebServicePost(String inUrl, String inData, IWebServiceOptions inOptions)
Parameters for overloads:
Parameter | Type | Description |
---|---|---|
inURL | string | The Target URL string |
inData | string | The URL additional data to send for the POST method |
inOptions | IWebServiceOptions | Additional options to set for the request. use CreateWSOptions() to create the options variable |
Comments
Please sign in to leave a comment.