GetDatabasesAsync Method
Overloads
| GetDatabasesAsync(String) | Lists the databases inside a ODBC, OLEDB or CUSTOM data source. | |
| GetDatabasesAsync(AsyncHandle, String) | Lists the databases inside a ODBC, OLEDB or CUSTOM data source. | |
| GetDatabasesAsync<T>(AsyncHandle, Func<Response, T>, String) | Lists the databases inside a ODBC, OLEDB or CUSTOM data source. | 
GetDatabasesAsync(String)
Lists the databases inside a ODBC, OLEDB or CUSTOM data source.
Declaration
      Task<IEnumerable<Database>> GetDatabasesAsync([QixName("qConnectionId")] string connectionId)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | connectionId | Identifier of the connection. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Database>> | 
GetDatabasesAsync(AsyncHandle, String)
Lists the databases inside a ODBC, OLEDB or CUSTOM data source.
Declaration
      Task<IEnumerable<Database>> GetDatabasesAsync(AsyncHandle asyncHandle, [QixName("qConnectionId")] string connectionId)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.String | connectionId | Identifier of the connection. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Database>> | 
GetDatabasesAsync<T>(AsyncHandle, Func<Response, T>, String)
Lists the databases inside a ODBC, OLEDB or CUSTOM data source.
Declaration
      Task<T> GetDatabasesAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qConnectionId")] string connectionId)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.Func<Response, T> | onResult | Continuation function | 
| System.String | connectionId | Identifier of the connection. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T |