I'm using signalR 2.0.2
I have an object in my client
Class A {}
Class B : A {}
Class C : { public A member {get;set;}
C obj = new C();
obj.member = new B();
In both client and server I have the same json serializer option off TypeNameHandling = TypeNameHandling.Auto
when i send the object to the server it get there , however the member is show as of type A , when it should b type B. I use the TraceWriter log and both on the client side and server side. the $type attirubte in the JSON shows the object type is B