What happens when an Azure push notification fails to send?
问题 Is there any documentation on what the NotificationOutcome class state looks like on a failure? NotificationOutcome result = await _hub.SendNotificationAsync(azureNotification, tags); The MSDN documentation is pretty (completely) useless. I'm guessing non-zero for result.Failure and result.Success means something went wrong (both seem to be 0 on a success) result.State is maybe more useful but there doesn't seem to be much documentation on this either 回答1: I've found the answer on this page