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
public 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> |
Implements
GetTableProfileDataAsync(AsyncHandle, String)
Returns profile data for a given table.
Declaration
public 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> |
Implements
GetTableProfileDataAsync<T>(AsyncHandle, Func<Response, T>, String)
Returns profile data for a given table.
Declaration
public 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 |