The non-generic Body property of Response does not keep a cache of the response - instead it tries to deserialize the input stream everytime Body is access. It should take a copy just like the generic version of Body does.
Problem code:
public object Body
{
get
{
return Decode<object>();
}
}
The non-generic Body property of Response does not keep a cache of the response - instead it tries to deserialize the input stream everytime Body is access. It should take a copy just like the generic version of Body does.
Problem code: