I'm recieving an object of type System.Net.Http.HttpResponseMessage<List<T>>
, how do I get the List<T>
?
I tried casting the content property and getting a value from the content property via its value property but nothing seems to work.
Thanks for the help!