GetGenericObjectAsync Method
Overloads
| GetGenericObjectAsync(AsyncHandle, String) | Returns the type of the app object and the corresponding handle. | |
| GetGenericObjectAsync(String) | Returns the type of the app object and the corresponding handle. | |
| GetGenericObjectAsync<T>(AsyncHandle, Func<Response, T>, String) | Returns the type of the app object and the corresponding handle. | 
GetGenericObjectAsync(AsyncHandle, String)
Returns the type of the app object and the corresponding handle.
Declaration
      public Task<GenericObject> GetGenericObjectAsync(AsyncHandle asyncHandle, [QixName("qId")] string id)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.String | id | Identifier of the object to retrieve. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<GenericObject> | 
Implements
GetGenericObjectAsync(String)
Returns the type of the app object and the corresponding handle.
Declaration
      [QixName("GetObject")]
public Task<GenericObject> GetGenericObjectAsync([QixName("qId")] string id)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | id | Identifier of the object to retrieve. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<GenericObject> | 
Implements
GetGenericObjectAsync<T>(AsyncHandle, Func<Response, T>, String)
Returns the type of the app object and the corresponding handle.
Declaration
      [QixName("GetObject")]
public Task<T> GetGenericObjectAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qId")] string id)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.Func<Response, T> | onResult | Continuation function | 
| System.String | id | Identifier of the object to retrieve. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T |