var value; // Type: any value = MakeAJAXCall(functionName, passedParameters, successFunction, successFunctionParameters);
function MakeAJAXCall( functionName : any, passedParameters : any, successFunction : any, successFunctionParameters : any ) : any;
Parameters
- functionName
- The name of the web service operation to be used.
- passedParameters
- A JavaScript object that contains the parameters and values to pass to the functionName.
- successFunction
- The function to execute along with any returned data from the operation upon completion of the call.
- successFunctionParameters
- A JavaScript object that contains any additional parameters to be sent to the successFunction.
Return Value
.