ChangeSessionAppSpaceAsync Method
Overloads
| ChangeSessionAppSpaceAsync(String) | 
             Add a session app to a space.  | 
        
      
    |
| ChangeSessionAppSpaceAsync(AsyncHandle, String) | 
             Add a session app to a space.  | 
        
      
    |
| ChangeSessionAppSpaceAsync<T>(AsyncHandle, Func<Response, T>, String) | 
             Add a session app to a space.  | 
        
      
    
ChangeSessionAppSpaceAsync(String)
Add a session app to a space.
Declaration
      Task<bool> ChangeSessionAppSpaceAsync([QixName("qSpaceId")] string spaceId)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | spaceId | 
           Identifier of the new space.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Boolean> | 
Remarks
Can be used by a privileged user when creating a session app to be consumed by other users. Only useful in environments where it is possible to reconnect to a session app, currently only in cloud deployments.
ChangeSessionAppSpaceAsync(AsyncHandle, String)
Add a session app to a space.
Declaration
      Task<bool> ChangeSessionAppSpaceAsync(AsyncHandle asyncHandle, [QixName("qSpaceId")] string spaceId)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | 
           Handle to asynchronous method request  | 
      
| System.String | spaceId | 
           Identifier of the new space.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Boolean> | 
Remarks
Can be used by a privileged user when creating a session app to be consumed by other users. Only useful in environments where it is possible to reconnect to a session app, currently only in cloud deployments.
ChangeSessionAppSpaceAsync<T>(AsyncHandle, Func<Response, T>, String)
Add a session app to a space.
Declaration
      Task<T> ChangeSessionAppSpaceAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qSpaceId")] string spaceId)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | 
           Handle to asynchronous method request  | 
      
| System.Func<Response, T> | onResult | 
           Continuation function  | 
      
| System.String | spaceId | 
           Identifier of the new space.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T | 
Remarks
Can be used by a privileged user when creating a session app to be consumed by other users. Only useful in environments where it is possible to reconnect to a session app, currently only in cloud deployments.