NotificationHubClient.GetNotificationOutcomeDetailsAsync Method

Definition

Overloads

GetNotificationOutcomeDetailsAsync(String, CancellationToken)

Retrieves the results of a Send* operation. This can retrieve intermediate results if the send is being processed or final results if the Send* has completed. This API can only be called for Standard namespaces.

GetNotificationOutcomeDetailsAsync(String)

Retrieves the results of a Send* operation. This can retrieve intermediate results if the send is being processed or final results if the Send* has completed. This API can only be called for Standard namespaces.

GetNotificationOutcomeDetailsAsync(String, CancellationToken)

Retrieves the results of a Send* operation. This can retrieve intermediate results if the send is being processed or final results if the Send* has completed. This API can only be called for Standard namespaces.

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

Parameters

notificationId
String

NotificationId which was returned when calling Send*.

cancellationToken
CancellationToken

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

Returns

The result of the Send operation, as expressed by a NotificationOutcome.

Implements

Exceptions

notificationId

Applies to

GetNotificationOutcomeDetailsAsync(String)

Retrieves the results of a Send* operation. This can retrieve intermediate results if the send is being processed or final results if the Send* has completed. This API can only be called for Standard namespaces.

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

Parameters

notificationId
String

NotificationId which was returned when calling Send*.

Returns

The result of the Send operation, as expressed by a NotificationOutcome.

Implements

Exceptions

notificationId

Applies to