There seems to be a limit on the number of output parameters in WCF. My service link loads only one parameter.
Example: if the service has the following method:
void methodA(out string param1, out string param2)
then the link to the service will only create
methodA(out string param1).
Does anyone know how to solve this?
source share