GetDatabaseOwnersAsync Method
Overloads
| GetDatabaseOwnersAsync(String, String) | Lists the owners of a database for a ODBC, OLEDB or CUSTOM connection. | |
| GetDatabaseOwnersAsync(AsyncHandle, String, String) | Lists the owners of a database for a ODBC, OLEDB or CUSTOM connection. | |
| GetDatabaseOwnersAsync<T>(AsyncHandle, Func<Response, T>, String, String) | Lists the owners of a database for a ODBC, OLEDB or CUSTOM connection. | 
GetDatabaseOwnersAsync(String, String)
Lists the owners of a database for a ODBC, OLEDB or CUSTOM connection.
Declaration
      public Task<IEnumerable<DatabaseOwner>> GetDatabaseOwnersAsync([QixName("qConnectionId")] string connectionId, [QixName("qDatabase")] string database = null)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | connectionId | Identifier of the connection. | 
| System.String | database | Name of the database. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<DatabaseOwner>> | 
Implements
GetDatabaseOwnersAsync(AsyncHandle, String, String)
Lists the owners of a database for a ODBC, OLEDB or CUSTOM connection.
Declaration
      public Task<IEnumerable<DatabaseOwner>> GetDatabaseOwnersAsync(AsyncHandle asyncHandle, [QixName("qConnectionId")] string connectionId, [QixName("qDatabase")] string database = null)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.String | connectionId | Identifier of the connection. | 
| System.String | database | Name of the database. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<DatabaseOwner>> | 
Implements
GetDatabaseOwnersAsync<T>(AsyncHandle, Func<Response, T>, String, String)
Lists the owners of a database for a ODBC, OLEDB or CUSTOM connection.
Declaration
      public Task<T> GetDatabaseOwnersAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qConnectionId")] string connectionId, [QixName("qDatabase")] string database = null)
    
  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. | 
| System.String | database | Name of the database. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T |