C# UWP Windows 10 Inter Process Communication with MemoryMappedFiles missing

白昼怎懂夜的黑 提交于 2020-08-01 13:36:08

问题


I'm facing a new problem, that occured while coding my IPC for my app.

Before UWP I was able to use the directive using System.IO.MemoryMappedFiles; sucessfully. Now I can't use using System.IO.MemoryMappedFiles; and I need it.

Is everyone facing the same issue? If yes, how do you solved it?

My app doesn't compile anymore.

I already tried to reimport the System.Core.dll as a reference and with DllImport, neither worked.


回答1:


Direct inter-process communication is not available in Universal apps.

You can use App Services or LaunchUriForResultsAsync to perform tasks that span multiple apps.



来源:https://stackoverflow.com/questions/32690676/c-sharp-uwp-windows-10-inter-process-communication-with-memorymappedfiles-missin

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!