Reputation: 10297
I need to know which classes/types the compact framework supports.
I found this, but it doesn't seem to help much.
Specifically, I need to know if CF supports MultipartFormDataContent, as I need to upload a file from a handheld device to a Web API app.
Does anybody know of a source that shows which classes/types are available in CF?
Upvotes: 0
Views: 219
Reputation: 7951
MSDN shows this information. If you go to a page, for example a class, and select the .NET 3.5 version of it, the members of the class will have a PDA icon if it is supported in the CF.
edit:
That class appears to be .NET 4.5+
Version Information .NET Framework Supported in: 4.5.1, 4.5 .NET for Windows Store apps Supported in: Windows 8
Compare that to the Form class for example
Upvotes: 1