Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Please see the article on docs.microsoft.com for the latest documentation.
- Anonymous
April 10, 2017
Sorry, my original reply is awaiting approval:All paths to files should work (e.g. anything that works directly with CreateFile should work). This with the caveat that you have to be in full trust if you want to use \?\ as opposed to \..For pipes you need to go through System.IO.Pipes as FileStream has a specific check for handle type. https://msdn.microsoft.com/en-us/library/system.io.pipes(v=vs.110).aspxThere is currently no alternative for mailslots unfortunately as the logic for determining sync/async in FileStream doesn’t work with mailslot handles (so you can’t even pass a handle you open yourself). - Anonymous
April 10, 2017
someone can provide some code example for the “Soft Keyboard”?