INotificationHubClient.GetNotificationOutcomeDetailsAsync Method

Definition

Overloads

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.

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);

Parameters

notificationId
String

NotificationId which was returned when calling Send*.

Returns

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

Exceptions

notificationId

Applies to

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);

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.

Exceptions

notificationId

Applies to