Sharing Interfaces Between a WCF Service and Client (marked w/ ServiceContract)
I'm using VS2010 and .NET 4.0. I've checked here ( Sharing Interfaces that are implemented in WCF Service ) but it differs in that what I'm trying to accomplish involves an interface that is marked with ServiceContract. I.e. in the service, I have an interface A (marked as a ServiceContract) and an extending interface B (also marked as a ServiceContract). B is implemented by the WCF service. The exact extension goes along the lines of this: public interface A<T> public interface B : A<SpecificType> ("SpecificType" is marked as a DataContract.) Obviously, B is exposed to the WCF client in the