Can covariance concept be implemented in WCF rest service,
i.e, i have class A and B inherits from It.
WCF Operation contract has input parameter A. I Should be able to pass B also to this peration.
I have a JSON client which accesses my EXF rest service.
Is it possible i imeplement covariance concept . How should i do this in server and client. Pls Help.
Of course! The only thing that's required for this to work is for you to add class B to the list of types that the service should know about using the ServiceKnownType attribute.
Here's a quick example I put together to demonstrate this, imagine this is your service contract:
And the implementation:
Because you've told WCF about the type
Employee
using theServiceKnownType
attribute, when it's encountered (both in the input parameters and in response) it'll be able to serialize/deserialize it, be it using JSON or not.Here's a simple client:
It's very common to pass subtypes to and from a WCF service, the only thing you won't be able to do though is to specify an interface as the response in your contract.
Hope this helps.