Click or drag to resize
GenericObjectSearchListObjectForAsyncT Method (AsyncHandle, FuncResponse, T, String, String)

Searches for a string in a list object.

This method applies to list objects (objects with one dimension).The search results can be displayed using the GetLayout 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> SearchListObjectForAsync<T>(
	AsyncHandle asyncHandle,
	Func<Response, T> onResult,
	string path,
	string match
)

Parameters

asyncHandle
Type: Qlik.EngineAsyncHandle
Handle to asynchronous method request
onResult
Type: SystemFuncResponse, T
Continuation function
path
Type: SystemString
Path to the definition of the list object. For example, /qListObjectDef.
match
Type: SystemString
Search string. Wild card characters are allowed. The search is not case sensitive. Examples: P*U*: retrieves only values that start with P and contain U P U S: retrieves values that start with P, U or S

Type Parameters

T

Return Value

Type: TaskT

Implements

IGenericObjectSearchListObjectForAsyncT(AsyncHandle, FuncResponse, T, String, String)
See Also