INotificationHubClient.GetNotificationOutcomeDetailsAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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);
abstract member 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.
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);
abstract member 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.
Exceptions
notificationId