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