Click or drag to resize

IAppContextRegisterEmbeddedFunction Method (String, String)

Registers an embedded function for use in SQL statments. The function name should not include the leading lowercase 'fn' associated with embedded functions.

See EmbeddedParser for more information on embedded functions.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
[BrowsableAttribute(false)]
void RegisterEmbeddedFunction(
	string functionName,
	string replacementValue
)

Parameters

functionName
Type: SystemString
The name of the function. The name should not include the leading 'fn.'
replacementValue
Type: SystemString
The replacement value.
Remarks
This method is deprecated and it is recommended that you use the RegisterEmbeddedFunction(String, String, String) overload that takes a description parameter.
See Also