DestroySessionVariableByIdAsync Method
Overloads
| DestroySessionVariableByIdAsync(String) | Removes a transient variable. | |
| DestroySessionVariableByIdAsync(AsyncHandle, String) | Removes a transient variable. | |
| DestroySessionVariableByIdAsync<T>(AsyncHandle, Func<Response, T>, String) | Removes a transient variable. | 
DestroySessionVariableByIdAsync(String)
Removes a transient variable.
Declaration
      Task<bool> DestroySessionVariableByIdAsync([QixName("qId")] string id)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | id | Identifier of the variable. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Boolean> | 
Remarks
qSuccess is set to true if the operation is successful.
DestroySessionVariableByIdAsync(AsyncHandle, String)
Removes a transient variable.
Declaration
      Task<bool> DestroySessionVariableByIdAsync(AsyncHandle asyncHandle, [QixName("qId")] string id)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.String | id | Identifier of the variable. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Boolean> | 
Remarks
qSuccess is set to true if the operation is successful.
DestroySessionVariableByIdAsync<T>(AsyncHandle, Func<Response, T>, String)
Removes a transient variable.
Declaration
      Task<T> DestroySessionVariableByIdAsync<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 variable. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T | 
Remarks
qSuccess is set to true if the operation is successful.