JobClient.ScheduleUpdateDeviceConfigurationAsync Method
Namespace: Microsoft.Azure.Devices
Assembly: Microsoft.Azure.Devices (in Microsoft.Azure.Devices.dll)
Overload List
| Name | Description | |
|---|---|---|
![]() |
ScheduleUpdateDeviceConfigurationAsync(String, IEnumerable<String>, String) | Schedules a Job to update the Configuration value for a Device |
![]() |
ScheduleUpdateDeviceConfigurationAsync(String, IEnumerable<String>, String, CancellationToken) | Schedules a Job to update the Configuration value for a Device |
![]() |
ScheduleUpdateDeviceConfigurationAsync(String, String, String) | Schedules a Job to update the Configuration value for a Device |
![]() |
ScheduleUpdateDeviceConfigurationAsync(String, String, String, CancellationToken) | Schedules a Job to update the Configuration value for a Device |
See Also
JobClient Class
Microsoft.Azure.Devices Namespace
Return to top
JobClient.ScheduleUpdateDeviceConfigurationAsync Method (String, IEnumerable<String>, String)
Schedules a Job to update the Configuration value for a Device
Syntax
public abstract Task<JobResponse> ScheduleUpdateDeviceConfigurationAsync(
string jobId,
IEnumerable<string> deviceIds,
string value
)
public:
virtual Task<JobResponse^>^ ScheduleUpdateDeviceConfigurationAsync(
String^ jobId,
IEnumerable<String^>^ deviceIds,
String^ value
) abstract
Parameters
jobId
Type: System.StringJob Id
deviceIds
Type: System.Collections.Generic.IEnumerable<String>Device Ids
value
Type: System.StringValue to be updated to
Return Value
Type: System.Threading.Tasks.Task<JobResponse>
Job to poll for status
Return to top
JobClient.ScheduleUpdateDeviceConfigurationAsync Method (String, IEnumerable<String>, String, CancellationToken)
Schedules a Job to update the Configuration value for a Device
Syntax
public abstract Task<JobResponse> ScheduleUpdateDeviceConfigurationAsync(
string jobId,
IEnumerable<string> deviceIds,
string value,
CancellationToken cancellationToken
)
public:
virtual Task<JobResponse^>^ ScheduleUpdateDeviceConfigurationAsync(
String^ jobId,
IEnumerable<String^>^ deviceIds,
String^ value,
CancellationToken cancellationToken
) abstract
Parameters
jobId
Type: System.StringJob Id
deviceIds
Type: System.Collections.Generic.IEnumerable<String>Device Ids
value
Type: System.StringValue to be updated to
cancellationToken
Type: System.Threading.CancellationTokenThe token which allows the the operation to be cancelled.
Return Value
Type: System.Threading.Tasks.Task<JobResponse>
Job to poll for status
Return to top
JobClient.ScheduleUpdateDeviceConfigurationAsync Method (String, String, String)
Schedules a Job to update the Configuration value for a Device
Syntax
public abstract Task<JobResponse> ScheduleUpdateDeviceConfigurationAsync(
string jobId,
string deviceId,
string value
)
public:
virtual Task<JobResponse^>^ ScheduleUpdateDeviceConfigurationAsync(
String^ jobId,
String^ deviceId,
String^ value
) abstract
Parameters
jobId
Type: System.StringJob Id
deviceId
Type: System.StringDevice Id
value
Type: System.StringValue to be updated to
Return Value
Type: System.Threading.Tasks.Task<JobResponse>
Job to poll for status
Return to top
JobClient.ScheduleUpdateDeviceConfigurationAsync Method (String, String, String, CancellationToken)
Schedules a Job to update the Configuration value for a Device
Syntax
public abstract Task<JobResponse> ScheduleUpdateDeviceConfigurationAsync(
string jobId,
string deviceId,
string value,
CancellationToken cancellationToken
)
public:
virtual Task<JobResponse^>^ ScheduleUpdateDeviceConfigurationAsync(
String^ jobId,
String^ deviceId,
String^ value,
CancellationToken cancellationToken
) abstract
Parameters
jobId
Type: System.StringJob Id
deviceId
Type: System.StringDevice Id
value
Type: System.StringValue to be updated to
cancellationToken
Type: System.Threading.CancellationTokenThe token which allows the the operation to be cancelled.
Return Value
Type: System.Threading.Tasks.Task<JobResponse>
Job to poll for status
Return to top
.jpeg)