Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I cannot manage to specify custom names for properties. I receive some JSON from the server (which I cannot change) with some ugly property names. I'd like the C# code to stick to naming conventions.

Below is the code I have (result0.StringValue stays null):

  [TestClass()]
  public class WebServiceResultConverterTest
  {
    [DataContract(Name = "SimpleObject")]
    private class SimpleObject
    {
        [DataMember(Name = "str_value")]
        public String StringValue { get; set; }

        [DataMember(Name = "int_value")]
        public String IntValue { get; set; }
    }

    [TestMethod()]
    public void DeserializeTest()
    {
        String input0 = @"{
          ""str_value"": ""This is a test string"",
          ""int_value"": 1664
        }";

        JavaScriptSerializer serializer = new JavaScriptSerializer();
        SimpleObject result0 = serializer.Deserialize<SimpleObject>(input0);

        Assert.AreEqual("This is a test string", result0.StringValue);
        Assert.AreEqual(1664, result0.IntValue);
    }
  }
share|improve this question

1 Answer

up vote 1 down vote accepted

You need to use the DataContractJsonSerializer with those attributes. I believe the JavascriptSerializer is now obsolete as of .Net 3.5.

share|improve this answer
Thanks, that works. Would there be any mean to specify some custom way of parsing the JSON for some of the data members? – MarvinLabs Sep 8 '11 at 15:35
It depends what sort of control you need. I find that JSON.NET json.codeplex.com allows for more control that the datacontract one. You can create JSONConverters. Otherwise, you can create surrogate classes to define how to serialize using the data contract one - msdn.microsoft.com/en-us/library/… – David Neale Sep 8 '11 at 16:01

Your Answer

 
discard

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

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