IAppFindMatchingFieldsAsyncT Method (String, IEnumerableString, FuncResponse, T, AsyncHandle) |
Retrieves any fields that belong to the same archipelago as the specified field and that match at least one of the specified tags.
Tags set by Qlik Sense are prefixed by the $ sign.
Namespace: Qlik.EngineAssembly: Qlik.Engine (in Qlik.Engine.dll) Version: 1.1.0.0 (1.1.0.0)
Syntax Task<T> FindMatchingFieldsAsync<T>(
string fieldName,
IEnumerable<string> tags,
Func<Response, T> onResult,
AsyncHandle asyncHandle = null
)
Function FindMatchingFieldsAsync(Of T) (
fieldName As String,
tags As IEnumerable(Of String),
onResult As Func(Of Response, T),
Optional asyncHandle As AsyncHandle = Nothing
) As Task(Of T)
Parameters
- fieldName
- Type: SystemString
Name of the field.
This method looks for fields that belong to the same archipelago as this specified field.
  - tags
- Type: System.Collections.GenericIEnumerableString
List of tags.
This method looks for fields that match at least one of the tags in this list. - onResult
- Type: SystemFuncResponse, T
Continuation function - asyncHandle (Optional)
- Type: Qlik.EngineAsyncHandle
Handle to asyncronous method request
Type Parameters
- T
Return Value
Type:
TaskTSee Also