dojo.__IoArgs
<script src="../../js/dojo.js"></script>
defined in dojo/_base/xhr.js
Usage
function () (view source)
FunctionsBack to top

function(response, ioArgs){}. response is an Object, ioArgs is of type dojo.__IoCallbackArgs. The error function will be called in an error case.

function(response, ioArgs){}. response is an Object, ioArgs is of type dojo.__IoCallbackArgs. The handle function will be called in either the successful or error case. For the load, error and handle functions, the ioArgs object will contain the following properties:

function(response, ioArgs){}. response is an Object, ioArgs is of type dojo.__IoCallbackArgs. The load function will be called on a successful response.
PropertiesBack to top
Contains properties with string values. These properties will be serialized as name1=value2 and passed in the request.
DOM node for a form. Used to extract the form values and send to the server.
Acceptable values depend on the type of IO transport (see specific IO calls for more information).
Default is false. If true, then a "dojo.preventCache" parameter is sent in the request with a value that changes with each request (timestamp). Useful only with GET-type requests.
Milliseconds to wait for the response. If this time passes, the then error callbacks are called.
URL to server endpoint.