vote up 0 vote down star

I want a method to return an XML Serialized Typed object. Is there an interface I can use to enforce this requirement?

flag

53% accept rate
what does this question even mean? you want a method that will serialize an object?? – Stan R. Oct 27 at 15:21
Hum.. I'm not sure how else I can rephrase my question for you to understand. HackedByChinese answered my question since you last posted which can hopefully give you a clue what i meant to ask. – burnt1ce Oct 27 at 15:28

4 Answers

vote up 1 vote down check

IXmlSerializable will allow you to customize XML serialization/deserialization. However, it still uses XmlSerializer to serialize data to or from XML.

link|flag
vote up 0 vote down

There is no interface that means "this object can be XML Serialized". IXmlSerializable means that the caller is stating that it implements XML Serialization on its own, and that the XML Serializer does not need to generate code to serialize it.

The following type is XML Serializable, but does not implement IXmlSerializable:

public class SerializeMe
{
    public string SomeProperty {get; set;}
}

There is no interface that could be used as a return type which could both return an IXmlSerializable instance and the above class.

link|flag
vote up 0 vote down

is this what you mean?

http://msdn.microsoft.com/en-us/library/system.runtime.serialization.iserializable.aspx

link|flag
Nope but similar. That's the XML serialization interface, I'm referring to the XML serialization attribute. msdn.microsoft.com/en-us/library/… – burnt1ce Oct 28 at 18:00
vote up 1 vote down

Implement ISerializable

link|flag

Your Answer

Get an OpenID
or

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