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