Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am referring this article to retrieve and display user information using StackOverflow API.

http://cgeers.com/2011/10/02/stack-exchange-api/

I have edited and made it compatible with the recent API (2.1)..

Now I want to return a list to controller..

Right this function returns single Item to controller

    public Items GetUser(int userId)
    {
        return GetStackExchangeObject<Items>(
            String.Format("/users/{0}?site=stackoverflow", userId));
    }

I want to return list to the controller..

share|improve this question
add comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.