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!

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You can use the .ReadAsAsync<List<YourType>> method of the Content property.

Please also read my sample from this answer.

link|improve this answer
thanks for that! – Nicolás Straub Valdivieso Dec 28 '11 at 11:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.