I have a generic type:

public class Packet<T> where T : IContent
{
    private int id;
    public int Id { get { return this.id; } }

    private T content;
    public T Content { get { return this.content; } }
}

I want to deserialize/serialize instances of this type from/to XML. IContent is defined like that:

public interface IContent
{
    XmlSerializer Serializer{get;}
}

Basically, I would like the Packet to use the serializer provided by its content to serialize and deserialize its content member. This serializer is in fact an instance of a pre-compiled xml serializer generated by sgen.exe.

Is it possible without making Packet<T> implementing IXmlSerializable?

link|improve this question

68% accept rate
feedback

2 Answers

Yes, you can implement a custom class directly with IXmlSerializable.
For more information, see this article.

link|improve this answer
My point is I would like to avoid custom serialization using IXmlSerializable. (See last question line.) – Romain Verdier Jan 9 '09 at 8:52
feedback

If you're using Generic Type, it is not able to generate a pre-completed XmlSerializer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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