GetFolderItemsForConnectionAsync Method
Overloads
| GetFolderItemsForConnectionAsync(String, String) | Lists the items for a folder connection. | |
| GetFolderItemsForConnectionAsync(AsyncHandle, String, String) | Lists the items for a folder connection. | |
| GetFolderItemsForConnectionAsync<T>(AsyncHandle, Func<Response, T>, String, String) | Lists the items for a folder connection. | 
GetFolderItemsForConnectionAsync(String, String)
Lists the items for a folder connection.
Declaration
      Task<IEnumerable<FolderItem>> GetFolderItemsForConnectionAsync([QixName("qConnectionId")] string connectionId, [QixName("qRelativePath")] string relativePath = null)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | connectionId | Identifier of the connection. | 
| System.String | relativePath | Relative path of the connection. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<FolderItem>> | 
GetFolderItemsForConnectionAsync(AsyncHandle, String, String)
Lists the items for a folder connection.
Declaration
      Task<IEnumerable<FolderItem>> GetFolderItemsForConnectionAsync(AsyncHandle asyncHandle, [QixName("qConnectionId")] string connectionId, [QixName("qRelativePath")] string relativePath = null)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.String | connectionId | Identifier of the connection. | 
| System.String | relativePath | Relative path of the connection. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<FolderItem>> | 
GetFolderItemsForConnectionAsync<T>(AsyncHandle, Func<Response, T>, String, String)
Lists the items for a folder connection.
Declaration
      Task<T> GetFolderItemsForConnectionAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qConnectionId")] string connectionId, [QixName("qRelativePath")] string relativePath = 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 | relativePath | Relative path of the connection. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T |