GetOdbcDsnsAsync Method
Overloads
| GetOdbcDsnsAsync() | Returns the list of the ODBC connectors that are installed in the system. | |
| GetOdbcDsnsAsync(AsyncHandle) | Returns the list of the ODBC connectors that are installed in the system. | |
| GetOdbcDsnsAsync<T>(AsyncHandle, Func<Response, T>) | Returns the list of the ODBC connectors that are installed in the system. | 
GetOdbcDsnsAsync()
Returns the list of the ODBC connectors that are installed in the system.
Declaration
      public Task<IEnumerable<OdbcDsn>> GetOdbcDsnsAsync()
    
  Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<OdbcDsn>> | 
Implements
GetOdbcDsnsAsync(AsyncHandle)
Returns the list of the ODBC connectors that are installed in the system.
Declaration
      public Task<IEnumerable<OdbcDsn>> GetOdbcDsnsAsync(AsyncHandle asyncHandle)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<OdbcDsn>> | 
Implements
GetOdbcDsnsAsync<T>(AsyncHandle, Func<Response, T>)
Returns the list of the ODBC connectors that are installed in the system.
Declaration
      public Task<T> GetOdbcDsnsAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.Func<Response, T> | onResult | Continuation function | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T |