I'm trying to make a PTP (Picture Transfer Protocol) library with a primary focus on mobile devices. The end goal is to create an app (with Xamarin or something similar) that works on Windows 10 (Phone), Android and iOS that uses PTP to communicate with cameras. The primary goals is to do PTP over IP (for wireless control and remote shooting), but while I'm at it I'd like to add support for PTP over USB so it's also possible to connect to an USB connected camera.
I've found mfptp which seems to do this, but it uses the .NET Micro Framework and a third party USB library. I doubt this is portable to a .NET Portable Class Library.
I've also found this question about a .NET MTP/PTP wrapper, but the links in that aren't that promising either. The most promising thing I've found so far is the WPD API but that seems pretty much focused to the Windows Desktop, and would require using COM to boot.
The real question is, is there some way to do this reliably in a cross-platform way? And if not, is there an alternative to the .NET WPD Wrapper on GitHub?