| GenericObjectSelectListObjectAlternativeAsyncT Method (AsyncHandle, FuncResponse, T, String, Boolean) | 
Selects all alternative values in a specific field.
This method applies to list objects (objects with one dimension).If a field contains at least one selected value, the values that are neither selected nor excluded are alternatives values.
 
Namespace: Qlik.EngineAssembly: Qlik.Engine (in Qlik.Engine.dll) Version: 2.1.0.0+Build:7.origin/release/ms13
Syntaxpublic Task<T> SelectListObjectAlternativeAsync<T>(
	AsyncHandle asyncHandle,
	Func<Response, T> onResult,
	string path,
	bool softLock = false
)
Public Function SelectListObjectAlternativeAsync(Of T) ( 
	asyncHandle As AsyncHandle,
	onResult As Func(Of Response, T),
	path As String,
	Optional softLock As Boolean = false
) As Task(Of T)
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 object to be selected.
                                        For example, /qListObjectDef.
                                        This parameter is mandatory. - 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. 
Type Parameters
- T
 
Return Value
Type: 
TaskTImplements
IGenericObjectSelectListObjectAlternativeAsyncT(AsyncHandle, FuncResponse, T, String, Boolean)
See Also