如何在Windows Phone中使用NFC停止消息订阅?

时间:2013-07-22 07:48:36

标签: windows-phone-8 nfc

我的申请表中有四页。第一页是登录页面,我没有使用任何NFC读取或写入。然后第二页我使用了NFC的读写操作。

最后我关闭第二页并导航到第一页。

我在第一页使用NFC卡读取NFC卡并显示NFC卡的内容。但是我没有在第一页中为NFC操作编写任何代码,我也使用stopsubscribemessage(),但它不起作用。

  private void StopSubscribeMessage()
    {
        MessageBox.Show(subscribedMessageId.ToString());
        if (subscribedMessageId != -1 && new_device != null)
        {
            MessageBox.Show(subscribedMessageId.ToString()+"   I am a stop method");
            new_device.StopSubscribingForMessage(subscribedMessageId);
            subscribedMessageId = -1;
        }
    }

0 个答案:

没有答案