vote up 0 vote down star

Given such object:

Foo foo = new Foo
{
    A = "a",
    B = "b",
    C = "c",
    D = "d"
};

How can I serialize and deserialize only certain properties (e.g. A and D).

Original: 
  { A = "a", B = "b", C = "c", D = "d" }

Serialized:
  { A = "a", D = "d" }

Deserialized:
  { A = "a", B = null, C = null, D = "d" }

I have wrote some code using JavaScriptSerializer from System.Web.Extensions.dll:

public string Serialize<T>(T obj, Func<T, object> filter)
{
    return new JavaScriptSerializer().Serialize(filter(obj));
}

public T Deserialize<T>(string input)
{
    return new JavaScriptSerializer().Deserialize<T>(input);
}

void Test()
{
    var filter = new Func<Foo, object>(o => new { o.A, o.D });

    string serialized = Serialize(foo, filter);
    // {"A":"a","D":"d"}

    Foo deserialized = Deserialize<Foo>(serialized);
    // { A = "a", B = null, C = null, D = "d" }
}

But I would like the deserializer to work a bit differently:

Foo output = new Foo
{
    A = "1",
    B = "2",
    C = "3",
    D = "4"
};

Deserialize(output, serialized);
// { A = "a", B = "2", C = "3", D = "d" }

Any ideas?

Also, may be there are some better or existing alternatives available?

EDIT:

There was some suggestions to use attributes to specify serializable fields. I am looking for more dynamic solution. So I can serialize A, B and the next time C, D.

EDIT 2:

Any serialization solutions (JSON, XML, Binary, Yaml, ...) are fine.

flag

75% accept rate

3 Answers

vote up 3 vote down

Pretty easy--just decorate the methods you wish to ignore with the [ScriptIgnore] attribute.

link|flag
I would like it to be more dynamic. So I can serialize either A, B or C, D. – alex2k8 Jun 4 at 12:44
1  
Then you are looking at this from the wrong angle--the native Serialization is about serializing objects. Probably the best bet would be to create two objects--one for A and B, one for C and D, and then serialize either of them as appropriate. – Wyatt Barnett Jun 4 at 15:43
vote up 1 vote down

There are attributes that can be applied to classes and/or properties that control serialization. Attributes that control serialization.

link|flag
vote up 0 vote down

What about the the "[NonSerialized()]" attribute tag?

    class Foo  
    {
        field A;

        [NonSerialized()]
        field B;

        [NonSerialized()]
        field C;

        field D;  
    }
link|flag
1  
That works for binary serialization. The example given is Java script serialization. I'm not sure if it will work for that kind. – JaredPar Jun 4 at 13:28
The equivalent attribute for the JavaScriptSerializer is [ScriptIgnore()]. – Lck Aug 6 at 14:44

Your Answer

Get an OpenID
or

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