The URL to be requested.
Add a cookie jar to the request.
Add a single post data string to the request. Not compatible if using addMultipartData or addMultipartFile.
Add a header to the request.
Able to be used multiple times, each time to add a new post data string to the request. Will override use of addData().
Able to be used multiple times, each time to add a new file to the request. Will override use of addData(). If you want to add data and a file you need to use addMultipartData().
Add a URL parameter.
Perform an HTTP Delete request.
Perform an HTTP Get request.
Set the callback function for a failed request.
Reference to the function that will be called when the request fails.
An Array of parameters that will be send to the callback when it is called.
Set the callback function for a successful request.
Reference to the function that will be called when the request is successful.
An Array of parameters that will be send to the callback when it is called.
Perform an HTTP Post request.
Perform an HTTP Put request.
Create a new HTTP Request.