I'm building a Windows Forms application to allow users to fiddle with SharePoint documents from their desktop. I need to be able replicate the Edit form for a particular content type, but can't find information on getting the fields displayed via
the client object model. I can get all the fields associated with a content type and the various properties of those fields, but obviously I don't want to show every single field from a content type to my users. The server object model can accomplish
this via the SPField.ShowInEditForm property, but no similar properties exist on the client side.
I think I could get this information by embedding a WCF service in SharePoint, but I'd like to avoid doing that if it all possible.
Advice?