Click or drag to resize

IFunctionParserResolve Method

Resolve the specific function. Note that if the function parser implements the IFunctionParser2 interface then this method will NEVER be called and Resolve(String, IAppContext, IDatabase, ResolveOptions, Object) will be called instead.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
string Resolve(
	string functionName,
	IDatabase db,
	ResolveOptions options,
	params Object[] args
)

Parameters

functionName
Type: SystemString
The name of the function.
db
Type: NetQuarryIDatabase
The database against which to resolve, or null.
options
Type: NetQuarryResolveOptions
Resolution option flags.
args
Type: SystemObject
Values provided as parameters to the embedded function.

Return Value

Type: String
The function resolved to a string.
See Also