UWP StreamSocket在背景时会失去发送数据的能力



uwp streamsocket

我想知道,当我插入时。我会失去发送数据的能力吗?

我正在编写一个流传输数据的UWP应用程序,我希望在后台我的StreamSocket仍然能够将数据发送出去。

谢谢雅各布

暂停应用程序时,您将无法再发送数据。您的两个选项:

1)您处理在背景任务中发送的数据(即使您的应用程序被暂停或终止也可以运行)
2)您创建一个扩展的执行会话(这将阻止您的应用首先被暂停)

与更多信息链接:
背景任务概述: https://learn.microsoft.com/en-us/windows/uwp/launch-resume/support-your-app-with-with-with-with-with-with-with-background-tasks

扩展执行概述: https://learn.microsoft.com/en-us/windows/uwp/launch-resume/run-minimized-with-extended-extended-extended-excution

无限期地运行: https://learn.microsoft.com/en-us/windows/uwp/launch-resume/run-in-in--in-the-back/indefinetly

相关内容

  • 没有找到相关文章

最新更新