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
      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> | 
TransformAppAsync(AsyncHandle, TransformAppParameters)
Transform current app into an instance of the targeted mode
Declaration
      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> | 
TransformAppAsync<T>(AsyncHandle, Func<Response, T>, TransformAppParameters)
Transform current app into an instance of the targeted mode
Declaration
      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 |