Giter Club home page Giter Club logo

Comments (7)

johnsheehan avatar johnsheehan commented on June 23, 2024

Darn, I thought this worked. It's nothing you're doing wrong. Handling for this case needs to be added.

from restsharp.

bkaid avatar bkaid commented on June 23, 2024

This bug seems to affect IList of any value types. I am running into the same problem serializing this array into a List: [14877833,13434092,88344083]. The result is a list of 3 longs. Also, if I serialize as a List, I get a null value.

from restsharp.

lukencode avatar lukencode commented on June 23, 2024

If anyone is looking for a quick and dirty fix for this issue I pieced together (read copy/paste) a deserializer based of the existing one - http://gist.github.com/485545.

Testing on it is pretty minimal but it worked for the simple stuff I used it for.

from restsharp.

johnsheehan avatar johnsheehan commented on June 23, 2024

I'm almost done with a fix for this as well. Should be committed in the next few days.

from restsharp.

johnsheehan avatar johnsheehan commented on June 23, 2024

fixed!

from restsharp.

bluejack2000 avatar bluejack2000 commented on June 23, 2024

Same problem exists for XML deserializer List<string>.

My hotfix for this is:

private object CreateAndMap(Type t, XElement element)
{
      object item;
      if (t == typeof(System.String))
      {
        item = element.Value;        
      }
      else
      {
        item = Activator.CreateInstance(t);
        Map(item, element);        
      }
      return item;
}

from restsharp.

Subv avatar Subv commented on June 23, 2024

It still happens for user-created types, i've found a solution:

in JsonDeserializer.cs
under CreateAndMap

replace

instance = Activator.CreateInstance(type);
Map(instance, element);

with

instance = System.Runtime.Serialization.FormatterServices.GetUninitializedObject(type);
Map(instance, element);

and thats all :)

from restsharp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.