你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

NotificationHubClient.GetNotificationHubJobAsync Method

Definition

Overloads

GetNotificationHubJobAsync(String)

Given a jobId, returns the associated NotificationHubJob. This method is used to get the status of the job to see if that job completed, failed, or is still in progress. This API is only available for Standard namespaces.

GetNotificationHubJobAsync(String, CancellationToken)

Given a jobId, returns the associated NotificationHubJob. This method is used to get the status of the job to see if that job completed, failed, or is still in progress. This API is only available for Standard namespaces.

GetNotificationHubJobAsync(String)

Given a jobId, returns the associated NotificationHubJob. This method is used to get the status of the job to see if that job completed, failed, or is still in progress. This API is only available for Standard namespaces.

public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationHubJob> GetNotificationHubJobAsync(string jobId);
abstract member GetNotificationHubJobAsync : string -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationHubJob>
override this.GetNotificationHubJobAsync : string -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationHubJob>
Public Function GetNotificationHubJobAsync (jobId As String) As Task(Of NotificationHubJob)

Parameters

jobId
String

The jobId is returned after creating a new job using SubmitNotificationHubJobAsync(NotificationHubJob).

Returns

The current state of the SubmitNotificationHubJobAsync(NotificationHubJob).

Implements

Applies to

GetNotificationHubJobAsync(String, CancellationToken)

Given a jobId, returns the associated NotificationHubJob. This method is used to get the status of the job to see if that job completed, failed, or is still in progress. This API is only available for Standard namespaces.

public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationHubJob> GetNotificationHubJobAsync(string jobId, System.Threading.CancellationToken cancellationToken);
abstract member GetNotificationHubJobAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationHubJob>
override this.GetNotificationHubJobAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationHubJob>
Public Function GetNotificationHubJobAsync (jobId As String, cancellationToken As CancellationToken) As Task(Of NotificationHubJob)

Parameters

jobId
String

The jobId is returned after creating a new job using SubmitNotificationHubJobAsync(NotificationHubJob).

cancellationToken
CancellationToken

A CancellationToken to observe while waiting for a task to complete.

Returns

The current state of the SubmitNotificationHubJobAsync(NotificationHubJob).

Implements

Applies to