DeidentificationClient.GetJobsAsync Method

Definition

Overloads

Name Description
GetJobsAsync(Nullable<Int32>, RequestContext)

[Protocol Method] List de-identification jobs.

GetJobsAsync(Nullable<Int32>, CancellationToken)

List de-identification jobs.

GetJobsAsync(Nullable<Int32>, RequestContext)

Source:
DeidentificationClient.cs
Source:
DeidentificationClient.cs

[Protocol Method] List de-identification jobs.

public virtual Azure.AsyncPageable<BinaryData> GetJobsAsync(int? maxpagesize, Azure.RequestContext context);
abstract member GetJobsAsync : Nullable<int> * Azure.RequestContext -> Azure.AsyncPageable<BinaryData>
override this.GetJobsAsync : Nullable<int> * Azure.RequestContext -> Azure.AsyncPageable<BinaryData>
Public Overridable Function GetJobsAsync (maxpagesize As Nullable(Of Integer), context As RequestContext) As AsyncPageable(Of BinaryData)

Parameters

maxpagesize
Nullable<Int32>

The maximum number of result items per page.

context
RequestContext

The request context, which can override default behaviors of the client pipeline on a per-call basis.

Returns

The AsyncPageable<T> from the service containing a list of BinaryData objects. Details of the body schema for each item in the collection are in the Remarks section below.

Exceptions

Service returned a non-success status code.

Applies to

GetJobsAsync(Nullable<Int32>, CancellationToken)

Source:
DeidentificationClient.cs
Source:
DeidentificationClient.cs

List de-identification jobs.

public virtual Azure.AsyncPageable<Azure.Health.Deidentification.DeidentificationJob> GetJobsAsync(int? maxpagesize = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetJobsAsync : Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Health.Deidentification.DeidentificationJob>
override this.GetJobsAsync : Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Health.Deidentification.DeidentificationJob>
Public Overridable Function GetJobsAsync (Optional maxpagesize As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of DeidentificationJob)

Parameters

maxpagesize
Nullable<Int32>

The maximum number of result items per page.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Remarks

Resource list operation template.

Applies to