JobClient.ScheduleUpdateDeviceConfigurationAsync Method

 

Namespace:   Microsoft.Azure.Devices
Assembly:  Microsoft.Azure.Devices (in Microsoft.Azure.Devices.dll)

Overload List

Name Description
System_CAPS_pubmethod ScheduleUpdateDeviceConfigurationAsync(String, IEnumerable<String>, String)

Schedules a Job to update the Configuration value for a Device

System_CAPS_pubmethod ScheduleUpdateDeviceConfigurationAsync(String, IEnumerable<String>, String, CancellationToken)

Schedules a Job to update the Configuration value for a Device

System_CAPS_pubmethod ScheduleUpdateDeviceConfigurationAsync(String, String, String)

Schedules a Job to update the Configuration value for a Device

System_CAPS_pubmethod 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

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

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

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

Return Value

Type: System.Threading.Tasks.Task<JobResponse>

Job to poll for status

Return to top