RegistryManager.RemoveDevicesAsync Method

Definition

Overloads

RemoveDevicesAsync(IEnumerable<Device>)
Obsolete.

Deletes a list of previously registered devices from the system.

RemoveDevicesAsync(IEnumerable<Device>, Boolean, CancellationToken)
Obsolete.

Deletes a list of previously registered devices from the system.

RemoveDevicesAsync(IEnumerable<Device>)

Caution

Use RemoveDevices2Async

Deletes a list of previously registered devices from the system.

[System.Obsolete("Use RemoveDevices2Async")]
public virtual System.Threading.Tasks.Task<string[]> RemoveDevicesAsync (System.Collections.Generic.IEnumerable<Microsoft.Azure.Devices.Device> devices);
[<System.Obsolete("Use RemoveDevices2Async")>]
abstract member RemoveDevicesAsync : seq<Microsoft.Azure.Devices.Device> -> System.Threading.Tasks.Task<string[]>
override this.RemoveDevicesAsync : seq<Microsoft.Azure.Devices.Device> -> System.Threading.Tasks.Task<string[]>
Public Overridable Function RemoveDevicesAsync (devices As IEnumerable(Of Device)) As Task(Of String())

Parameters

devices
IEnumerable<Device>

The devices being deleted.

Returns

Attributes

Applies to

RemoveDevicesAsync(IEnumerable<Device>, Boolean, CancellationToken)

Caution

Use RemoveDevices2Async

Deletes a list of previously registered devices from the system.

[System.Obsolete("Use RemoveDevices2Async")]
public virtual System.Threading.Tasks.Task<string[]> RemoveDevicesAsync (System.Collections.Generic.IEnumerable<Microsoft.Azure.Devices.Device> devices, bool forceRemove, System.Threading.CancellationToken cancellationToken);
[<System.Obsolete("Use RemoveDevices2Async")>]
abstract member RemoveDevicesAsync : seq<Microsoft.Azure.Devices.Device> * bool * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string[]>
override this.RemoveDevicesAsync : seq<Microsoft.Azure.Devices.Device> * bool * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string[]>
Public Overridable Function RemoveDevicesAsync (devices As IEnumerable(Of Device), forceRemove As Boolean, cancellationToken As CancellationToken) As Task(Of String())

Parameters

devices
IEnumerable<Device>

The devices being deleted.

forceRemove
Boolean

Forces the device object to be removed without regard for an ETag match.

cancellationToken
CancellationToken

The token which allows the operation to be canceled.

Returns

Attributes

Applies to