Alachisoft.NCache.Common.RPCFramework.ITargetMethod Maven / Gradle / Ivy
package Alachisoft.NCache.Common.RPCFramework;
import java.lang.reflect.InvocationTargetException;
public interface ITargetMethod {
String GetMethodName();
int GetOverlaod();
Object GetMethodReflectionInfo();
int GetNumberOfArguments();
Object Invoke(Object[] arguments) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy