I'm trying to serialize an object to XML that has a number of properties, some of which are readonly.

public Guid Id { get; private set; }

I have marked the class [Serializable] and I have implemented the ISerializable interface.

Below is the code I'm using to serialize my object.

public void SaveMyObject(MyObject obj)
{
    XmlSerializer serializer = new XmlSerializer(typeof(MyObject));
    TextWriter tw = new StreamWriter(_location);
    serializer.Serialize(tw, obj);
    tw.Close();
}

Unfortunately it falls over on the first line with this message.

InvalidOperationException was unhandled: Unable to generate a temporary class (result=1). error CS0200: Property or indexer 'MyObject.Id' cannot be assigned to -- it is read only

If I set the Id property to public it works fine. Can someone tell me if I'm doing something, or at least if its even possible?

link|improve this question

feedback

5 Answers

up vote 18 down vote accepted

You could use DataContractSerializer (but note you can't use xml attributes - only xml elements):

using System;
using System.Runtime.Serialization;
using System.Xml;
[DataContract]
class MyObject {
    public MyObject(Guid id) { this.id = id; }
    [DataMember(Name="Id")]
    private Guid id;
    public Guid Id { get {return id;}}
}
static class Program {
    static void Main() {
        var ser = new DataContractSerializer(typeof(MyObject));
        var obj = new MyObject(Guid.NewGuid());
        using(XmlWriter xw = XmlWriter.Create(Console.Out)) {
            ser.WriteObject(xw, obj);
        }
    }
}

Alternatively, you can implement IXmlSerializable and do everything yourself - but this works with XmlSerializer, at least.

link|improve this answer
+1, thanks for the advise on my answer. – Stefan Steinegger Apr 29 '09 at 15:15
I've changed my code to use the DataContractSerializer and I've noticed that its still running the GetObjectData method. Am I right in thinking that I can either put attributes on my properties to serialize them, or I can implement the ISerializable interface? – Jon Mitchell Apr 29 '09 at 15:26
If you implement ISerializable (or is it IXmlSeializable?), you're basically doing all the work yourself... – Marc Gravell Apr 30 '09 at 7:28
This worked for me, but later I found out that serializing private members with the DataMemberAttribute only works when running in full trust environment, not in partial trust. A solution is making the member internal instead of private. For details see blog.walteralmeida.com/2010/05/…. – Peladao Jul 22 '11 at 18:12
@Peladao good tip - thanks – Marc Gravell Jul 22 '11 at 18:15
show 1 more comment
feedback

This guy saved me hours of work implementing custom serialization approches to this exact problem. Short answer: Don't use auto properties getter/setter. Follow this link.

Hope it helps...

link|improve this answer
1  
Dead link. Can you explain more in detail? – Alxandr Jul 2 '11 at 22:38
1  
link works fine for me. – Luke Aug 9 '11 at 5:16
feedback

You could use the System.Runtime.Serialization.NetDataContractSerializer. It is more powerful and fixes some issues of the classic Xml Serializer.

Note that there are different attributes for this one.

[DataContract]
public class X
{
  [DataMember]
  public Guid Id { get; private set; }
}


NetDataContractSerializer serializer = new NetDataContractSerializer();
TextWriter tw = new StreamWriter(_location);
serializer.Serialize(tw, obj);

Edit:

Updat based on Marc's comment: You should probably use System.Runtime.Serialization.DataContractSerializer for your case to get a clean XML. The rest of the code is the same.

link|improve this answer
NetDataContractSerializer doesn't write xml... - or rather, it isn't clean xml suitable for external consumption - it has assembly metadata in it. – Marc Gravell Apr 29 '09 at 15:05
@Marc: Thanks for the hint. It always depends on what one wants to achieve. DataContractSerializer is probably what is expected here. – Stefan Steinegger Apr 29 '09 at 15:11
feedback

Read only fields will not be serialized using the XmlSerializer, this is due to the nature of the readonly keyword

From MSDN:

The readonly keyword is a modifier that you can use on fields. When a field declaration includes a readonly modifier, assignments to the fields introduced by the declaration can only occur as part of the declaration or in a constructor in the same class.

So... you would pretty much need to set the fields value in the default constructor...

link|improve this answer
I thought that because I had implemented the ISerializable.GetObjectData method the XmlSerializer would use that to get the information I wanted to serialize, and not try and access my read only properties. – Jon Mitchell Apr 29 '09 at 15:11
XmlSerializer doesn't care about ISerializable - only IXmlSerializable – Marc Gravell Apr 29 '09 at 15:15
Marc thanks, that makes sense. – Jon Mitchell Apr 29 '09 at 15:21
feedback

Its not possible with that particular serialization mode (see the other comments for workarounds). If you really want to leave your serialization mode as-is, you have to work around the framework limitations on this one. See this example:

http://en.allexperts.com/q/VB-NET-3306/Class-Serialization.htm

Esentially, mark the property public, but throw an exception if it's accessed at any time other than deserialization.

link|improve this answer
3  
"but throw an exception" - since XmlSerializer doesn't support serialization callbacks, you have no way of knowing... – Marc Gravell Apr 29 '09 at 15:16
feedback

Your Answer

 
or
required, but never shown

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