I've got a class which implements it's own (de)serialization via XLINQ, and I'd like to have clients of my class which attempt to XMLSerialze my class to have my XLINQ method called instead.
Is that possible?
I've got a class which implements it's own (de)serialization via XLINQ, and I'd like to have clients of my class which attempt to XMLSerialze my class to have my XLINQ method called instead.
Is that possible?
IXmlSerializable has methods that you can implement that XmlSerializer will use instead of its own approach.
Edit: No idea if this applies to XLINQ or not, but I don't really see why not.