Home > Net >  Azure Notification Hub : Count is not updated in Active Device limit count after delete registration
Azure Notification Hub : Count is not updated in Active Device limit count after delete registration

Time:12-06

I am using

await hub.DeleteRegistrationAsync(registration.RegistrationId,registration.ETag);

Method to deleteregistration from azure notification hub manually but it is not updating count of active device limit in notification hub.

How to delete limit count in hub?

Anyone has idea about it?

CodePudding user response:

You're doing it right - it just can take up to 24 hours for the number of devices associated with your namespace/hub to update in the portal.

  • Related