GetFileTablesExAsync Method
Overloads
| GetFileTablesExAsync(String, String, FileDataFormat) | Lists the tables and fields of a JSON or XML file for a folder connection. | |
| GetFileTablesExAsync(AsyncHandle, String, String, FileDataFormat) | Lists the tables and fields of a JSON or XML file for a folder connection. | |
| GetFileTablesExAsync<T>(AsyncHandle, Func<Response, T>, String, String, FileDataFormat) | Lists the tables and fields of a JSON or XML file for a folder connection. | 
GetFileTablesExAsync(String, String, FileDataFormat)
Lists the tables and fields of a JSON or XML file for a folder connection.
Declaration
      public Task<IEnumerable<DataTableEx>> GetFileTablesExAsync([QixName("qConnectionId")] string connectionId, [QixName("qRelativePath")] string relativePath = null, [QixName("qDataFormat")] FileDataFormat dataFormat)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | connectionId | Identifier of the connection. | 
| System.String | relativePath | Path of the connection file. | 
| FileDataFormat | dataFormat | Type of the file. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<DataTableEx>> | 
Implements
GetFileTablesExAsync(AsyncHandle, String, String, FileDataFormat)
Lists the tables and fields of a JSON or XML file for a folder connection.
Declaration
      public Task<IEnumerable<DataTableEx>> GetFileTablesExAsync(AsyncHandle asyncHandle, [QixName("qConnectionId")] string connectionId, [QixName("qRelativePath")] string relativePath = null, [QixName("qDataFormat")] FileDataFormat dataFormat)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.String | connectionId | Identifier of the connection. | 
| System.String | relativePath | Path of the connection file. | 
| FileDataFormat | dataFormat | Type of the file. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<DataTableEx>> | 
Implements
GetFileTablesExAsync<T>(AsyncHandle, Func<Response, T>, String, String, FileDataFormat)
Lists the tables and fields of a JSON or XML file for a folder connection.
Declaration
      public Task<T> GetFileTablesExAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qConnectionId")] string connectionId, [QixName("qRelativePath")] string relativePath = null, [QixName("qDataFormat")] FileDataFormat dataFormat)
    
  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 | relativePath | Path of the connection file. | 
| FileDataFormat | dataFormat | Type of the file. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T |