GetAppLayoutAsync Method
Overloads
| GetAppLayoutAsync() | Evaluates an app. Returns dynamic properties (if any) in addition to the engine (fixed) properties. A data set is returned. | |
| GetAppLayoutAsync(AsyncHandle) | Evaluates an app. Returns dynamic properties (if any) in addition to the engine (fixed) properties. A data set is returned. | |
| GetAppLayoutAsync<T>(AsyncHandle, Func<Response, T>) | Evaluates an app. Returns dynamic properties (if any) in addition to the engine (fixed) properties. A data set is returned. | 
GetAppLayoutAsync()
Evaluates an app.
Returns dynamic properties (if any) in addition to the engine (fixed) properties.
A data set is returned.
Declaration
      public Task<NxAppLayout> GetAppLayoutAsync()
    
  Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<NxAppLayout> | 
Implements
GetAppLayoutAsync(AsyncHandle)
Evaluates an app.
Returns dynamic properties (if any) in addition to the engine (fixed) properties.
A data set is returned.
Declaration
      public Task<NxAppLayout> GetAppLayoutAsync(AsyncHandle asyncHandle)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<NxAppLayout> | 
Implements
GetAppLayoutAsync<T>(AsyncHandle, Func<Response, T>)
Evaluates an app.
Returns dynamic properties (if any) in addition to the engine (fixed) properties.
A data set is returned.
Declaration
      public Task<T> GetAppLayoutAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.Func<Response, T> | onResult | Continuation function | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T |