RegistryManager.AddDeviceWithTwinAsync 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
AddDeviceWithTwinAsync(Device, Twin) |
Adds a Device with Twin information |
AddDeviceWithTwinAsync(Device, Twin, CancellationToken) |
Adds a Device with Twin information |
AddDeviceWithTwinAsync(Device, Twin)
Adds a Device with Twin information
public virtual System.Threading.Tasks.Task<Microsoft.Azure.Devices.BulkRegistryOperationResult> AddDeviceWithTwinAsync (Microsoft.Azure.Devices.Device device, Microsoft.Azure.Devices.Shared.Twin twin);
abstract member AddDeviceWithTwinAsync : Microsoft.Azure.Devices.Device * Microsoft.Azure.Devices.Shared.Twin -> System.Threading.Tasks.Task<Microsoft.Azure.Devices.BulkRegistryOperationResult>
override this.AddDeviceWithTwinAsync : Microsoft.Azure.Devices.Device * Microsoft.Azure.Devices.Shared.Twin -> System.Threading.Tasks.Task<Microsoft.Azure.Devices.BulkRegistryOperationResult>
Public Overridable Function AddDeviceWithTwinAsync (device As Device, twin As Twin) As Task(Of BulkRegistryOperationResult)
Parameters
- device
- Device
The device to add.
- twin
- Twin
The twin information for the device being added.
Returns
The result of the add operation.
Applies to
AddDeviceWithTwinAsync(Device, Twin, CancellationToken)
Adds a Device with Twin information
public virtual System.Threading.Tasks.Task<Microsoft.Azure.Devices.BulkRegistryOperationResult> AddDeviceWithTwinAsync (Microsoft.Azure.Devices.Device device, Microsoft.Azure.Devices.Shared.Twin twin, System.Threading.CancellationToken cancellationToken);
abstract member AddDeviceWithTwinAsync : Microsoft.Azure.Devices.Device * Microsoft.Azure.Devices.Shared.Twin * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Devices.BulkRegistryOperationResult>
override this.AddDeviceWithTwinAsync : Microsoft.Azure.Devices.Device * Microsoft.Azure.Devices.Shared.Twin * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Devices.BulkRegistryOperationResult>
Public Overridable Function AddDeviceWithTwinAsync (device As Device, twin As Twin, cancellationToken As CancellationToken) As Task(Of BulkRegistryOperationResult)
Parameters
- device
- Device
The device to add.
- twin
- Twin
The twin information for the device being added.
- cancellationToken
- CancellationToken
A cancellation token to cancel the operation.
Returns
The result of the add operation.
Applies to
Azure SDK for .NET