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

link|improve this question

78% accept rate
Can you post your deserialization code? – SimpleCoder Nov 22 '10 at 22:10
feedback

5 Answers

up vote 3 down vote accepted

You could declare the enum property as nullable:

public Language? Language { get; set; }


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 :

[XmlIgnore]
public Language Language { get; set; }

[XmlAttribute("Language")]
public string LanguageAsString
{
    get { return Language.ToString(); }
    set
    {
        if (string.IsNullOrEmpty(value))
        {
            Language = default(Language);
        }
        else
        {
            Language = (Language)Enum.Parse(typeof(Language), value);
        }
    }
}
link|improve this answer
IT gives "Error in reflecting Type" error!! – Priya10 Nov 22 '10 at 22:31
That also means you can store a null value there, which is bad encapsulation IMHO. It's better to provide a non-nullable in this case, and convert to a defeault value on the setter. – Camilo Martin Nov 22 '10 at 22:31
@Priya, see my updated answer – Thomas Levesque Nov 22 '10 at 22:37
Thanks.. it works!! – Priya10 Nov 22 '10 at 22:55
This is not the best way as you adapt your model to the technology, and that is not a good thing. – Vajda Aug 29 '11 at 15:56
show 4 more comments
feedback

You probably need to mark up your enumeration, and add a default item that represents Unknown.

For example:

Public Enum EmployeeStatus
   <XmlEnum("") Unknown = 0
   <XmlEnum("Single")> One = 1
   <XmlEnum("Double")> Two = 2
   <XmlEnum("Triple")> Three = 3
End Enum

For more information, see here.

link|improve this answer
feedback

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.

link|improve this answer
yeah, I know. but I am thinking what can be workaround for the same. – Priya10 Nov 22 '10 at 22:14
feedback
object wontBeNull = couldBeNull ?? defeaultIfNull;

Is what I'd try. It's called Null-Coalescing operator, I use it when I want a defeault for null input.

link|improve this answer
I am not sure how to implement this. I have a property of the enum type, which should deserialized. How do I mention this in the property when I declare it??? – Priya10 Nov 22 '10 at 22:34
Seriously though, have you considered a try-catch block? If you put one around your deserialization, it can catch many errors and malformed XML files. – Camilo Martin Nov 22 '10 at 22:43
feedback

You can do it this way:

namespace Example
{

   public enum Language
   {
     [XmlEnum("en")]
     English,

     [XmlEnum("de")]
     Deutsch
   }

   public class ExampleClass
   {

      private Language? language;

      [XmlAttribute("Language")]
      public Language Language
      {
         get { return language ?? Example.Language.English; }
         set { language = value; }
      }

      .
      .
      .
   }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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