コード例 #1
0
 /// <summary>
 /// Cancels this job.
 /// This method just creates a <see cref="JobReference"/> and delegates to <see cref="BigQueryClient.CancelJob(JobReference, CancelJobOptions)"/>.
 /// </summary>
 /// <param name="options">The options for the operation. May be null, in which case defaults will be supplied.</param>
 /// <returns>The final state of the job.</returns>
 public BigQueryJob Cancel(CancelJobOptions options = null) => _client.CancelJob(Reference, options);