Click or drag to resize
FieldSelectAsyncT Method (AsyncHandle, FuncResponse, T, String, Boolean, Int32)

Selects field values matching a search string.

Namespace: Qlik.Engine
Assembly: Qlik.Engine (in Qlik.Engine.dll) Version: 2.1.0.0+Build:7.origin/release/ms13
Syntax
public Task<T> SelectAsync<T>(
	AsyncHandle asyncHandle,
	Func<Response, T> onResult,
	string match,
	bool softLock = false,
	int excludedValuesMode = 0
)

Parameters

asyncHandle
Type: Qlik.EngineAsyncHandle
Handle to asynchronous method request
onResult
Type: SystemFuncResponse, T
Continuation function
match
Type: SystemString
String to search for. Can contain wild cards or numeric search criteria.
softLock (Optional)
Type: SystemBoolean
Set to true to ignore locks; in that case, locked fields can be selected. The default value is false. This parameter is optional.
excludedValuesMode (Optional)
Type: SystemInt32
Include excluded values in search. This parameter is optional.

Type Parameters

T

Return Value

Type: TaskT

Implements

IFieldSelectAsyncT(AsyncHandle, FuncResponse, T, String, Boolean, Int32)
See Also