Implementing IXmlSerializable on a generated class that has XmlTypeAttribute

Posted by Josh on Stack Overflow See other posts from Stack Overflow or by Josh
Published on 2010-04-26T13:41:02Z Indexed on 2010/04/26 13:43 UTC
Read the original article Hit count: 264

Basically, the initial problem is I need to make a boolean value serialize as 0 or 1. The solution I found was to implement IXmlSerializable, which I did. Unfortunately the class I'm trying to serialize is generated code off a schema and has an XmlTypeAttribute on it. When I try to (de)serialize the object with the XmlSerializer created in the usual manner ( new XmlSerializer(type)) it throws this exception:

System.InvalidOperationException: Only XmlRoot attribute may be specified for the type ______ Please use XmlSchemaProviderAttribute to specify schema type.

Two options come to mind immediatly:

1) remove the attribute in the generated code. This change would have to be made every time the code was re-generated.

2) Use an XmlAttributeOverrides object when creating the serializer to remove the attribute. This would require the rest of the code base to "know" that it needs to override that attribute. Also, the exception thrown gives absolutly no clue as to what needs to be done to fix it.

Both options kinda stink. Is there a third option?

© Stack Overflow or respective owner

Related posts about .NET

Related posts about c#