Click or drag to resize

ICallable.ApplyProcedureMethod Method

Executes the procedure method given by its name. Throws an exception if the method does not exists or the parameters are of wrong types.

Namespace:  de.unika.ipd.grGen.libGr
Assembly:  libGr (in libGr.dll) Version: GrGen.NET 7.2
Syntax
C#
Object[] ApplyProcedureMethod(
	IActionExecutionEnvironment actionEnv,
	IGraph graph,
	string name,
	Object[] arguments
)

Parameters

actionEnv
Type: de.unika.ipd.grGen.libGr.IActionExecutionEnvironment
The current action execution environment.
graph
Type: de.unika.ipd.grGen.libGr.IGraph
The current graph.
name
Type: System.String
The name of the procedure method to apply.
arguments
Type:System.Object[]
An array with the arguments to the method.

Return Value

Type:Object[]
An array with the return values of procedure application. Only valid until the next call of this method.
See Also