Click or drag to resize

QStringResolveExpression Method

Resolve the provided expression for query parameter references of the form [<flags>req.<param>] where flags is optional and is one or FieldExpressionAttrs and param is the name of the parameter (and req is literally "req"). References for which no corresponding parameter are found are not resolved. Note that at this time only request parameters are resolved and the ParseEmbeddedFuncs is ignored. If embedded functions need to be parsed you must also call ResolveEmbeddedFunctions(String, IDatabase, ResolveOptions).

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public string ResolveExpression(
	string expr,
	ExpressionResolutionFlags flags
)

Parameters

expr
Type: SystemString
The expression to resolve.
flags
Type: NetQuarry.DataExpressionResolutionFlags
Flags specifying how the resolution should be performed.

Return Value

Type: String
The resolved expression.
See Also