GetAppEntryAsync Method
Overloads
| GetAppEntryAsync(String) | Retrieves the meta data of an app. | |
| GetAppEntryAsync(AsyncHandle, String) | Retrieves the meta data of an app. | |
| GetAppEntryAsync<T>(AsyncHandle, Func<Response, T>, String) | Retrieves the meta data of an app. | 
GetAppEntryAsync(String)
Retrieves the meta data of an app.
Declaration
      public Task<AppEntry> GetAppEntryAsync([QixName("qAppID")] string appID)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | appID | Identifier of the app, as returned by the  
 | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<AppEntry> | 
Implements
GetAppEntryAsync(AsyncHandle, String)
Retrieves the meta data of an app.
Declaration
      public Task<AppEntry> GetAppEntryAsync(AsyncHandle asyncHandle, [QixName("qAppID")] string appID)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.String | appID | Identifier of the app, as returned by the  
 | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<AppEntry> | 
Implements
GetAppEntryAsync<T>(AsyncHandle, Func<Response, T>, String)
Retrieves the meta data of an app.
Declaration
      public Task<T> GetAppEntryAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qAppID")] string appID)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.Func<Response, T> | onResult | Continuation function | 
| System.String | appID | Identifier of the app, as returned by the  
 | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T |