Share via


DevicesClient.ExportAsync(ExportJobProperties, CancellationToken) Method

Definition

Creates a new bulk job to export device registrations to the container specified by the provided URI.

public virtual System.Threading.Tasks.Task<Microsoft.Azure.Devices.ExportJobProperties> ExportAsync (Microsoft.Azure.Devices.ExportJobProperties jobParameters, System.Threading.CancellationToken cancellationToken = default);
abstract member ExportAsync : Microsoft.Azure.Devices.ExportJobProperties * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Devices.ExportJobProperties>
override this.ExportAsync : Microsoft.Azure.Devices.ExportJobProperties * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Devices.ExportJobProperties>
Public Overridable Function ExportAsync (jobParameters As ExportJobProperties, Optional cancellationToken As CancellationToken = Nothing) As Task(Of ExportJobProperties)

Parameters

jobParameters
ExportJobProperties

Parameters for the job.

cancellationToken
CancellationToken

The token which allows the operation to be canceled.

Returns

JobProperties of the newly created job.

Exceptions

When the provided job properties instance is null.

If IoT hub responded to the request with a non-successful status code. For example, if the provided request was throttled, IotHubServiceException with ThrottlingException is thrown. For a complete list of possible error cases, see IotHubServiceErrorCode.

If the HTTP request fails due to an underlying issue such as network connectivity, DNS failure, or server certificate validation.

If the provided cancellation token has requested cancellation.

Remarks

Conditionally includes configurations, if specified.

Applies to