The official docs doesn't properly state if ipc via memory-mapped-files is supported in uwp. I was working on a scenario for ipc between an uwp app and its desktop extension. While I can create memory-mapped-files using System.IO.MemoryMappedFiles from uwp app with codeGeneration capability but opening from win32 process fails with message Unable to find the specified file.. Is ipc via memory-mapped-files supported in uwp, if yes, what is the proper way to do it??
Update 1
Updated sample implementing answer from @Peter Torr - MSFT.
Update 2
Working sample in which memory-mapped-file created from uwp app can be read by win32 process. Reading memory-mapped-file in uwp app created by win32 process still isn't working.