> I have many, related, external functions and I want to service them all from the execute() > method of a single 'Function<name> : public Function' class. However, I can not find > anything in the parameters to the execute() method that tells me which function is being > called. I want to do something like;
... > Can you point me to where I can grab the function name? There is no access to the function name from the call itself. You will have to create a Function-derived class for each extension function you want to implement. Dave
