I'd like to prefetch in C#, the XmlTypeMapping of a known set of class types to speed up XML deserialization of them while instantiating a new XmlSerializer as XmlReflectionImporter.ImportTypeMapping (happening during XmlSerializer contruction on a class type) is quite time consuming and seem to happen at each XmlSerializer construction.
In addition the xml content I am parsing forces me to use XmlRootAttribute argument to set the xml root element name to parse as it is not always the same. To achieve that, I can use the XmlSerializer(Type, XmlRootAttribute) constructor to deserialize my object.
However I would also like to benefit from the prefetch XmlTypeMapping and I can't see any XmlSerializer constructor like : XmlSerializer( XmlTypeMapping, XmlRootAttribute ) or something close. How could I achieve that?
Any help would be greatly appreciated! Thanks.