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