I have an xml in which one of the elements has an attribute that can be blank. For e.g.,
<tests>
<test language="">
.....
</test>
</tests>
Now, language is enum type in the classes created from the schema. It works fine if the language is specified, it fails to deserialize if it is blank (as shown in example).
Edit: Code for deserialization:
XmlSerializer xmlserializer = new XmlSerializer(type);
StringReader strreader = new StringReader(stringXML);
Object o = serializer.Deserialize(strreader);
How can I handle this scenario
You probably need to mark up your enumeration, and add a default item that represents Unknown.
For example:
For more information, see here.
Is what I'd try. It's called Null-Coalescing operator, I use it when I want a default for null input.
You could declare the enum property as nullable:EDIT: ok, I just tried, it doesn't work for attributes... Here's another option: don't serialize/deserialize this property directly, but serialize a string property instead :
You can do it this way:
What would you want the result to be ?
A blank value cannot be mapped to a null reference since an enum is a non-nullable value type.