Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7445035
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T11:43:27+00:00 2026-05-29T11:43:27+00:00

could not deserialize json into objects. try to use DataContractJsonSerializer . here is how

  • 0

could not deserialize json into objects. try to use DataContractJsonSerializer.
here is how i use it
have NO idea how to cope with it..
CLASS

    [Serializable]
    public class user
    {
        public user() { }
        public user(string _uid, string _first_name, string _last_name, string _online)
        {
            this._uid = _uid;
            this._first_name = _first_name;
            this._last_name = _last_name;
            this._online = _online;
        }

        string _uid;
        string _first_name;
        string _last_name;
        string _online;

        [DataMember]
        public string uid
        {
            get { return _uid; }
            set { _uid = value; }
        }

        [DataMember]
        public string first_name
        {
            get { return _first_name; }
            set { _first_name = value; }
        }

        [DataMember]
        public string last_name
        {
            get { return _last_name; }
            set { _last_name = value; }
        }
        [DataMember]
        public string online
        {
            get { return _online; }
            set { _online = value; }
        }
    } 

DataContractJsonSerializer Usage

        WebRequest w = WebRequest.Create(string.Format("https://api.vk.com/method/friends.get?uid=6631031&fields=uid,first_name,last_name&access_token={0}",_accesstoken));
        Stream stream = w.GetResponse().GetResponseStream();

        //StreamReader sread = new StreamReader(stream);//here i can get the result into a string
        //string sLine = sread.ReadLine();              //to make sure the result is valid json

        DataContractJsonSerializer json = new DataContractJsonSerializer(typeof(user[]));
        var result = (user[]) json.ReadObject(stream);

EXAMPLE OF MY JSON

"{\"response\":[{\"uid\":779358,\"first_name\":\"Dark\",\"last_name\":\"Knight\",\"online\":0},{\"uid\":1023931,\"first_name\":\"Екатерина\",\"last_name\":\"Гаврилова\",\"online\":0},{\"uid\":2475856,\"first_name\":\"Даша\",\"last_name\":\"Матвеева\",\"online\":0},......]}"
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T11:43:28+00:00Added an answer on May 29, 2026 at 11:43 am

    You could define a wrapper object containing a response property of type user[] in order to reflect your JSON structure:

    [DataContract]
    public class Result
    {
        [DataMember]
        public user[] response { get; set; }
    }
    

    and then:

    DataContractJsonSerializer json = new DataContractJsonSerializer(typeof(Result));
    Result result = (Result)json.ReadObject(stream);
    user[] users = result.response;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to deserialize an NSString of JSON into objects via RestKit? I
I could not find a clear answer to this question elsewhere, so I'll try
In my windows mobile application i would like to deserialize and serialize JSON objects.
I am getting the following error org.springframework.orm.hibernate3.HibernateSystemException: could not deserialize; nested exception is org.hibernate.type.SerializationException:
Could not load file or assembly 'EntityFramework, Version=4.3.1.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its
I could not find any pointers on how to create a menubar icon on
Just could not get this one and googling did not help much either.. First
I could not find the function that returns the name of the cell referenced.
I could not understand this error, the scenario is: This is the directory structure:
I could not find a post to do it automatically as I don't want

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.