Azure通知中心注册生存时间

时间:2017-04-11 12:18:59

标签: .net azure push-notification azure-notificationhub

默认情况下,注册TTL设置为生命周期(10,675,199天)。 如何更改并控制它?

enter image description here

Haven在管理门户,.Net描述,powershell自动化脚本上找到了线索。

1 个答案:

答案 0 :(得分:2)

根据this post,它在中心级别通过RegistrationTtl property配置:

var namespaceManager = NamespaceManager.CreateFromConnectionString("connectionstring");
NotificationHubDescription hub = namespaceManager.GetNotificationHub("foo");
hub.RegistrationTtl = TimeSpan.MaxValue;
namespaceManager.UpdateNotificationHub(hub);