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