Is there a way to access the return value of an IDO Extension Class method call? I have a C# method defined like this:
public int GeneratePickList(string pLocationPrefix, int pRank, string pWarehouse, ref string pMessage)
I know I can "return" values using the 'ref' keyword, but is there any way to access the return value of the method? Or do I have to use the 'ref' moethod for every value I want to pass back to the caller.