Click or drag to resize

IFunctionParser2Resolve Method

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

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

Parameters

functionName
Type: SystemString
The name of the function.
cxt
Type: NetQuarryIAppContext
The application context.
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