Collection class can not be XML serialized/deserialized

Issue #89 invalid
Former user created an issue

The collection<T> class seems to be missing the generic Add (Object item) function. Please add the following to the collection<T> class:

 public override void Add(object item)
 {
         if (item is T)
         {
             this.items.Add((T) item);
             this.OnItemAdded((T) item);
         }
 }

Comments (4)

  1. Christian Oeing repo owner

    Thanks for your report, I will try to add a solution to the next version. Xml Serialization is not supported, but if this method is the only thing that's missing to make it possible, I'll gladly add it :)

  2. Christian Oeing repo owner

    I created a unit test for xml serialization today, but it worked as intended.

    The test case is below. If you have any other information when the xml serialization fails, please let me know and I will reopen the issue.

    namespace Slash.Unity.DataBind.Tests.Core.Data
    {
        using System.IO;
        using System.Linq;
        using System.Xml.Serialization;
        using NUnit.Framework;
        using Slash.Unity.DataBind.Core.Data;
    
        public class XmlSerializationTest
        {
            [Test]
            public void SerializeContextWithCollection()
            {
                var context = new ContextWithCollection {StringCollection = new Collection<string> {"a", "c", "b"}};
                TestSerialize(context);
            }
    
            [Test]
            public void SerializeContextWithProperty()
            {
                var context = new ContextWithProperty {Int = 23};
                TestSerialize(context);
            }
    
            private static void TestSerialize(object context)
            {
                var stringWriter = new StringWriter();
                var xmlSerializer = new XmlSerializer(context.GetType());
                xmlSerializer.Serialize(stringWriter, context);
    
                var xml = stringWriter.ToString();
                var deserializedContext = xmlSerializer.Deserialize(new StringReader(xml));
    
                Assert.AreEqual(context, deserializedContext);
            }
    
            public class ContextWithProperty : Context
            {
                private readonly Property<int> intProperty =
                    new Property<int>();
    
                public int Int
                {
                    get
                    {
                        return this.intProperty.Value;
                    }
                    set
                    {
                        this.intProperty.Value = value;
                    }
                }
    
                /// <inheritdoc />
                public override bool Equals(object obj)
                {
                    if (ReferenceEquals(null, obj))
                    {
                        return false;
                    }
    
                    if (ReferenceEquals(this, obj))
                    {
                        return true;
                    }
    
                    if (obj.GetType() != this.GetType())
                    {
                        return false;
                    }
    
                    return this.Equals((ContextWithProperty) obj);
                }
    
                /// <inheritdoc />
                public override int GetHashCode()
                {
                    return this.Int;
                }
    
                protected bool Equals(ContextWithProperty other)
                {
                    return Equals(this.Int, other.Int);
                }
            }
    
            public class ContextWithCollection : Context
            {
                private readonly Property<Collection<string>>
                    stringCollectionProperty = new Property<Collection<string>>(
                        new Collection<string>());
    
                public Collection<string> StringCollection
                {
                    get
                    {
                        return this.stringCollectionProperty.Value;
                    }
                    set
                    {
                        this.stringCollectionProperty.Value = value;
                    }
                }
    
                /// <inheritdoc />
                public override bool Equals(object obj)
                {
                    if (ReferenceEquals(null, obj))
                    {
                        return false;
                    }
    
                    if (ReferenceEquals(this, obj))
                    {
                        return true;
                    }
    
                    if (obj.GetType() != this.GetType())
                    {
                        return false;
                    }
    
                    return this.Equals((ContextWithCollection) obj);
                }
    
                /// <inheritdoc />
                public override int GetHashCode()
                {
                    return this.stringCollectionProperty != null ? this.stringCollectionProperty.GetHashCode() : 0;
                }
    
                protected bool Equals(ContextWithCollection other)
                {
                    return this.StringCollection.SequenceEqual(other.StringCollection);
                }
            }
        }
    }
    
  3. Log in to comment