CancelRequestAsync Method
Overloads
| CancelRequestAsync(AsyncHandle) | 
             Cancels an ongoing request. The request is stopped.  | 
        
      
    |
| CancelRequestAsync(Int32) | 
             Cancels an ongoing request. The request is stopped.  | 
        
      
    |
| CancelRequestAsync(AsyncHandle, Int32) | 
             Cancels an ongoing request. The request is stopped.  | 
        
      
    
CancelRequestAsync(AsyncHandle)
Cancels an ongoing request. The request is stopped.
Declaration
      Task CancelRequestAsync(AsyncHandle asyncHandle)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | 
           Corresponds to the identifier for the call.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task | 
CancelRequestAsync(Int32)
Cancels an ongoing request. The request is stopped.
Declaration
      Task CancelRequestAsync([QixName("qRequestId")] int requestId)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int32 | requestId | 
           Identifier of the request to stop.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task | 
CancelRequestAsync(AsyncHandle, Int32)
Cancels an ongoing request. The request is stopped.
Declaration
      Task CancelRequestAsync(AsyncHandle asyncHandle, [QixName("qRequestId")] int requestId)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | 
           Handle to asynchronous method request  | 
      
| System.Int32 | requestId | 
           Identifier of the request to stop.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task |