I am using a third party dll for image processing which returns COM objects. Currently I have declared DataContract classes which include some of the information I need from the returned COM objects.
If I want to extend the functionality of my WCF service, is there a way to return the COM object directly or will I be required to create new classes and decorate them using DataContract manually? (~30 classes)
Thanks