GetTableProfileDataAsync Method
Overloads
| GetTableProfileDataAsync(String) | Returns profile data for a given table. | |
| GetTableProfileDataAsync(AsyncHandle, String) | Returns profile data for a given table. | |
| GetTableProfileDataAsync<T>(AsyncHandle, Func<Response, T>, String) | Returns profile data for a given table. | 
GetTableProfileDataAsync(String)
Returns profile data for a given table.
Declaration
      Task<TableProfilingData> GetTableProfileDataAsync([QixName("qTableName")] string tableName)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | tableName | Name of the table | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<TableProfilingData> | 
GetTableProfileDataAsync(AsyncHandle, String)
Returns profile data for a given table.
Declaration
      Task<TableProfilingData> GetTableProfileDataAsync(AsyncHandle asyncHandle, [QixName("qTableName")] string tableName)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.String | tableName | Name of the table | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<TableProfilingData> | 
GetTableProfileDataAsync<T>(AsyncHandle, Func<Response, T>, String)
Returns profile data for a given table.
Declaration
      Task<T> GetTableProfileDataAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qTableName")] string tableName)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.Func<Response, T> | onResult | Continuation function | 
| System.String | tableName | Name of the table | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T |