FindMatchingFieldsAsync Method
Overloads
| FindMatchingFieldsAsync(String, IEnumerable<String>) |
Retrieves any fields that belong to the same archipelago as the specified field and that match at least one of the specified tags. |
|
| FindMatchingFieldsAsync(AsyncHandle, String, IEnumerable<String>) |
Retrieves any fields that belong to the same archipelago as the specified field and that match at least one of the specified tags. |
|
| FindMatchingFieldsAsync<T>(AsyncHandle, Func<Response, T>, String, IEnumerable<String>) |
Retrieves any fields that belong to the same archipelago as the specified field and that match at least one of the specified tags. |
FindMatchingFieldsAsync(String, IEnumerable<String>)
Retrieves any fields that belong to the same archipelago as the specified field and that match at least one of the specified tags.
Declaration
public Task<IEnumerable<NxMatchingFieldInfo>> FindMatchingFieldsAsync([QixName("qFieldName")] string fieldName, [QixName("qTags")] IEnumerable<string> tags)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | fieldName |
Name of the field. This method looks for fields that belong to the same archipelago as this specified field. |
| System.Collections.Generic.IEnumerable<System.String> | tags |
List of tags. This method looks for fields that match at least one of the tags in this list. |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<NxMatchingFieldInfo>> |
Implements
Remarks
Tags set by Qlik Sense are prefixed by the $ sign.
FindMatchingFieldsAsync(AsyncHandle, String, IEnumerable<String>)
Retrieves any fields that belong to the same archipelago as the specified field and that match at least one of the specified tags.
Declaration
public Task<IEnumerable<NxMatchingFieldInfo>> FindMatchingFieldsAsync(AsyncHandle asyncHandle, [QixName("qFieldName")] string fieldName, [QixName("qTags")] IEnumerable<string> tags)
Parameters
| Type | Name | Description |
|---|---|---|
| AsyncHandle | asyncHandle |
Handle to asynchronous method request |
| System.String | fieldName |
Name of the field. This method looks for fields that belong to the same archipelago as this specified field. |
| System.Collections.Generic.IEnumerable<System.String> | tags |
List of tags. This method looks for fields that match at least one of the tags in this list. |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<NxMatchingFieldInfo>> |
Implements
Remarks
Tags set by Qlik Sense are prefixed by the $ sign.
FindMatchingFieldsAsync<T>(AsyncHandle, Func<Response, T>, String, IEnumerable<String>)
Retrieves any fields that belong to the same archipelago as the specified field and that match at least one of the specified tags.
Declaration
public Task<T> FindMatchingFieldsAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qFieldName")] string fieldName, [QixName("qTags")] IEnumerable<string> tags)
Parameters
| Type | Name | Description |
|---|---|---|
| AsyncHandle | asyncHandle |
Handle to asynchronous method request |
| System.Func<Response, T> | onResult |
Continuation function |
| System.String | fieldName |
Name of the field. This method looks for fields that belong to the same archipelago as this specified field. |
| System.Collections.Generic.IEnumerable<System.String> | tags |
List of tags. This method looks for fields that match at least one of the tags in this list. |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<T> |
Type Parameters
| Name | Description |
|---|---|
| T |
Implements
Remarks
Tags set by Qlik Sense are prefixed by the $ sign.