vote up 1 vote down star

Having the following class (.Net 3.5):

public class Something
{
    public string Text {get; private set;}

    private Something()
    {
        Text = string.Empty;
    }

    public Something(string text)
    {
        Text = text;
    }
}

This serializes without error but the resulting XML does not include the Text property since it does not have a public setter.

Is there a way (the simpler, the better) to have the XmlSerializer include those properties?

flag

3 Answers

vote up 2 vote down check

XmlSerializer only cares about public read/write members. One option is to implement IXmlSerializable, but that is a lot of work. A more practical option (if available and suitable) may be to use DataContractSerializer:

[DataContract]
public class Something
{
    [DataMember]
    public string Text {get; private set;}

    private Something()
    {
        Text = string.Empty;
    }

    public Something(string text)
    {
        Text = text;
    }
}

This works on both public and private members, but the xml produced is not quite the same, and you can't specify xml attributes.

link|flag
Thanks Marc, That could work, I didn't know about this attribute. The two drawbacks you mentioned are they the only ones or are there other gotchas as well? – Stecy Jun 30 at 20:37
In many ways, it is a /better/ serializer (you'd hope so since it is newer) - but it has different aims. It isn't as flexible if you need tight control of the xml. But if you just want you data to serialize, then it should work. Or try protobuf-net ;-p – Marc Gravell Jun 30 at 20:43
Note you need to add a reference to System.Runtime.Serialization (from .NET 3.0) – Marc Gravell Jun 30 at 20:43
vote up -1 vote down

Try

[Serializable] public class Something { ... }

link|flag
XmlSerializer doesn't need [Serializable], and it doesn't do anything at all towards letting you serialize read-only members. – Marc Gravell Jun 30 at 20:32
It needs [Serializable] sometimes. – Henk Holterman Jun 30 at 20:46
@Henk: when does it need [Serializable]? – John Saunders Jun 30 at 20:52
IIRC, the WSDL generator for asmx needs it... but not XmlSerializer itself... – Marc Gravell Jun 30 at 20:59
No, sorry, I thought this was about the SOAPFormatter. – Henk Holterman Jun 30 at 21:05
vote up 0 vote down

No. XML Serialization will only serialized public read/write fields and properties of objects.

link|flag

Your Answer

Get an OpenID
or

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