在OnRegistered方法中向NotificationHub添加标记

本文关键字:NotificationHub 添加 加标记 OnRegistered 方法 | 更新日期: 2023-09-27 17:58:43

在成功登录后的应用程序中,我想使用Tag注册到NotificationHub,其中Tag是一个电子邮件地址。

以下场景在iOS上运行良好:

MessagingCenter.Subscribe<LoginViewModel, string>(this, MessagesId.RegisterForPush, (s, arg) =>
            {
                NSSet tags = new NSSet(arg); // create tags if you want
                Hub.RegisterNativeAsync(deviceToken, tags, (errorCallback) =>
                {
                    if (errorCallback != null)
                        Console.WriteLine("RegisterNativeAsync error: " + errorCallback.ToString());
                });
            });

但对于安卓系统来说,相当于抛出NetworkOnMainThreadException:

MessagingCenter.Subscribe<LoginViewModel, string>(this, MessagesId.RegisterForPush, (s, arg) =>
        {
            var tags = new List<string>() { arg };
            try
            {
                var hubRegistration = Hub.Register(registrationId, tags.ToArray());
            }
            catch (Exception ex)
            {
                Log.Error(PushHandlerBroadcastReceiver.TAG, ex.Message);
            }
        });

你知道如何解决这个问题吗?

在OnRegistered方法中向NotificationHub添加标记

使用Task.Run将注册过程从主UI线程中关闭

await Task.Run(() =>
{
   // your register code here...
});