NamespaceManager.GetNotificationHubJobsAsync Method

Definition

Overloads

GetNotificationHubJobsAsync(String)

Gets the notification hub jobs asynchronously.

GetNotificationHubJobsAsync(String, CancellationToken)

Gets the notification hub jobs asynchronously.

GetNotificationHubJobsAsync(String)

Gets the notification hub jobs asynchronously.

public System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.NotificationHubs.NotificationHubJob>> GetNotificationHubJobsAsync (string notificationHubPath);
abstract member GetNotificationHubJobsAsync : string -> System.Threading.Tasks.Task<seq<Microsoft.Azure.NotificationHubs.NotificationHubJob>>
override this.GetNotificationHubJobsAsync : string -> System.Threading.Tasks.Task<seq<Microsoft.Azure.NotificationHubs.NotificationHubJob>>
Public Function GetNotificationHubJobsAsync (notificationHubPath As String) As Task(Of IEnumerable(Of NotificationHubJob))

Parameters

notificationHubPath
String

The notification hub path.

Returns

A task that represents the asynchronous get jobs operation

Implements

Applies to

GetNotificationHubJobsAsync(String, CancellationToken)

Gets the notification hub jobs asynchronously.

public System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.NotificationHubs.NotificationHubJob>> GetNotificationHubJobsAsync (string notificationHubPath, System.Threading.CancellationToken cancellationToken);
abstract member GetNotificationHubJobsAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<seq<Microsoft.Azure.NotificationHubs.NotificationHubJob>>
override this.GetNotificationHubJobsAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<seq<Microsoft.Azure.NotificationHubs.NotificationHubJob>>
Public Function GetNotificationHubJobsAsync (notificationHubPath As String, cancellationToken As CancellationToken) As Task(Of IEnumerable(Of NotificationHubJob))

Parameters

notificationHubPath
String

The notification hub path.

cancellationToken
CancellationToken

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

Returns

A task that represents the asynchronous get jobs operation

Implements

Applies to