JobClient.CancelJobAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CancelJobAsync(String) |
Cancels/Deletes the job with the specified ID. |
CancelJobAsync(String, CancellationToken) |
Cancels/Deletes the job with the specified ID. |
CancelJobAsync(String)
Cancels/Deletes the job with the specified ID.
public abstract System.Threading.Tasks.Task<Microsoft.Azure.Devices.JobResponse> CancelJobAsync (string jobId);
abstract member CancelJobAsync : string -> System.Threading.Tasks.Task<Microsoft.Azure.Devices.JobResponse>
Public MustOverride Function CancelJobAsync (jobId As String) As Task(Of JobResponse)
Parameters
- jobId
- System.String
Id of the Job to cancel
Returns
- System.Threading.Tasks.Task<JobResponse>
Applies to
CancelJobAsync(String, CancellationToken)
Cancels/Deletes the job with the specified ID.
public abstract System.Threading.Tasks.Task<Microsoft.Azure.Devices.JobResponse> CancelJobAsync (string jobId, System.Threading.CancellationToken cancellationToken);
abstract member CancelJobAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Devices.JobResponse>
Parameters
- jobId
- System.String
Id of the job to cancel
- cancellationToken
- System.Threading.CancellationToken
Task cancellation token
Returns
- System.Threading.Tasks.Task<JobResponse>