HeroStats Libraries
AdditionalFunctionHandler Delegate

[This is preliminary documentation and subject to change.]

This delegate will be a used to make addional function handlers available from the user.

[Visual Basic]
Public Delegate Function AdditionalFunctionHandler( _
   ByVal functionName As String, _
   ByVal parameters As Object() _
) As Object
[C#]
public delegate object AdditionalFunctionHandler(
   string functionName,
   object[] parameters
);

Parameters

functionName
name of the function
parameters
object arrays of parameters passed to the function

Return Value

computed object

Requirements

Namespace: HeroStats.ExpressionEvaluation

Assembly: StatsEngine (in StatsEngine.dll)

See Also

HeroStats.ExpressionEvaluation Namespace