public void AddFunction(string name, MethodInfo methodInfo, object targetObject) { this[name] = ContextFactory.CreateFunction(methodInfo, targetObject); }
public void AddFunction(string name, Type type, string functionName, object targetObject) { this[name] = ContextFactory.CreateFunction(type, functionName, targetObject); }
public void AddFunction(string name, MethodInfo methodInfo) { this[name] = ContextFactory.CreateFunction(methodInfo); }
public void AddFunction(string name, Type type, string functionName) { this[name] = ContextFactory.CreateFunction(type, functionName); }
public void AddFunction <T>(string name, string functionName, T targetObject) { this[name] = ContextFactory.CreateFunction(typeof(T), functionName, targetObject); }
public void AddFunction(string name, MethodInfo methodInfo) { Set(name, ContextFactory.CreateFunction(methodInfo)); }
public void AddFunction(string name, Type type, string methodName, object targetObject) { Set(name, ContextFactory.CreateFunction(type, methodName, targetObject)); }
public void AddFunction(string name, Type type, string methodName) { Set(name, ContextFactory.CreateFunction(type, methodName)); }