GetFieldValuesAsync Method
Overloads
| GetFieldValuesAsync(String, Boolean, BookmarkFieldPage) | Retrieves the values of a field for the default state. FieldvaluePlease refer to Engine API reference for table definition. | |
| GetFieldValuesAsync(AsyncHandle, String, Boolean, BookmarkFieldPage) | Retrieves the values of a field for the default state. FieldvaluePlease refer to Engine API reference for table definition. | |
| GetFieldValuesAsync<T>(AsyncHandle, Func<Response, T>, String, Boolean, BookmarkFieldPage) | Retrieves the values of a field for the default state. FieldvaluePlease refer to Engine API reference for table definition. | 
GetFieldValuesAsync(String, Boolean, BookmarkFieldPage)
Retrieves the values of a field for the default state.
Fieldvalue
Please refer to Engine API reference for table definition.
Declaration
      Task<IEnumerable<FieldValue>> GetFieldValuesAsync([QixName("qField")] string field, [QixName("qGetExcludedValues")] bool getExcludedValues, [QixName("qDataPage")] BookmarkFieldPage dataPage)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | field | Name of the field. | 
| System.Boolean | getExcludedValues | If set to true, only NOT-selected values are returned. | 
| BookmarkFieldPage | dataPage | Range of returned values. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<FieldValue>> | 
GetFieldValuesAsync(AsyncHandle, String, Boolean, BookmarkFieldPage)
Retrieves the values of a field for the default state.
Fieldvalue
Please refer to Engine API reference for table definition.
Declaration
      Task<IEnumerable<FieldValue>> GetFieldValuesAsync(AsyncHandle asyncHandle, [QixName("qField")] string field, [QixName("qGetExcludedValues")] bool getExcludedValues, [QixName("qDataPage")] BookmarkFieldPage dataPage)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.String | field | Name of the field. | 
| System.Boolean | getExcludedValues | If set to true, only NOT-selected values are returned. | 
| BookmarkFieldPage | dataPage | Range of returned values. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<FieldValue>> | 
GetFieldValuesAsync<T>(AsyncHandle, Func<Response, T>, String, Boolean, BookmarkFieldPage)
Retrieves the values of a field for the default state.
Fieldvalue
Please refer to Engine API reference for table definition.
Declaration
      Task<T> GetFieldValuesAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qField")] string field, [QixName("qGetExcludedValues")] bool getExcludedValues, [QixName("qDataPage")] BookmarkFieldPage dataPage)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.Func<Response, T> | onResult | Continuation function | 
| System.String | field | Name of the field. | 
| System.Boolean | getExcludedValues | If set to true, only NOT-selected values are returned. | 
| BookmarkFieldPage | dataPage | Range of returned values. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T |