Click or drag to resize
HubGetBNFAsyncT Method (AsyncHandle, FuncResponse, T, BNFType)

Returns a set of rules defining the Qlik Sense scripting language grammar. These rules define the syntax for the script statements and the script or chart functions.

A way to retrieve the list of script statements, script functions or chart functions is to call the GetBNF method.

Namespace: Qlik.Engine
Assembly: Qlik.Engine (in Qlik.Engine.dll) Version: 2.1.0.0+Build:7.origin/release/ms13
Syntax
public Task<T> GetBNFAsync<T>(
	AsyncHandle asyncHandle,
	Func<Response, T> onResult,
	BNFType bnfType
)

Parameters

asyncHandle
Type: Qlik.EngineAsyncHandle
Handle to asynchronous method request
onResult
Type: SystemFuncResponse, T
Continuation function
bnfType
Type: Qlik.EngineBNFType
Returns a set of rules defining the syntax for: the script statements and the script functions if qBnfType is set to S. the chart functions if qBnfType is set to E.

Type Parameters

T

Return Value

Type: TaskT

Implements

IHubGetBNFAsyncT(AsyncHandle, FuncResponse, T, BNFType)
See Also