TransformAppAsync Method
Overloads
| TransformAppAsync(TransformAppParameters) | 
             Transform current app into an instance of the targeted mode  | 
        
      
    |
| TransformAppAsync(AsyncHandle, TransformAppParameters) | 
             Transform current app into an instance of the targeted mode  | 
        
      
    |
| TransformAppAsync<T>(AsyncHandle, Func<Response, T>, TransformAppParameters) | 
             Transform current app into an instance of the targeted mode  | 
        
      
    
TransformAppAsync(TransformAppParameters)
Transform current app into an instance of the targeted mode
Declaration
      public Task<TransformAppResult> TransformAppAsync([QixName("qDstParameters")] TransformAppParameters dstParameters)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| TransformAppParameters | dstParameters | 
           Attributes that should be set in the new app.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<TransformAppResult> | 
Implements
TransformAppAsync(AsyncHandle, TransformAppParameters)
Transform current app into an instance of the targeted mode
Declaration
      public Task<TransformAppResult> TransformAppAsync(AsyncHandle asyncHandle, [QixName("qDstParameters")] TransformAppParameters dstParameters)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | 
           Handle to asynchronous method request  | 
      
| TransformAppParameters | dstParameters | 
           Attributes that should be set in the new app.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<TransformAppResult> | 
Implements
TransformAppAsync<T>(AsyncHandle, Func<Response, T>, TransformAppParameters)
Transform current app into an instance of the targeted mode
Declaration
      public Task<T> TransformAppAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qDstParameters")] TransformAppParameters dstParameters)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | 
           Handle to asynchronous method request  | 
      
| System.Func<Response, T> | onResult | 
           Continuation function  | 
      
| TransformAppParameters | dstParameters | 
           Attributes that should be set in the new app.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T |