view Implab.ServiceHost/Unity/ContainerElement.cs @ 270:ade80d94dfb5 v3

Working on Unity container xml configuration
author cin
date Wed, 25 Apr 2018 04:44:40 +0300
parents ff581cff7003
children d4d437ec4483
line wrap: on
line source

using Implab.Xml;
using System.Collections.Generic;
using System.Xml;
using System.Xml.Schema;
using System.Xml.Serialization;

namespace Implab.ServiceHost.Unity {
    [XmlRoot("container", Namespace = Schema.ContainerConfigurationNamespace)]
    public class ContainerElement : IXmlSerializable {

        public List<IConfigurationElement> Items {get; set; } = new List<IConfigurationElement>();

        public XmlSchema GetSchema() {
            return null;
        }

        public void ReadXml(XmlReader reader) {
            while(reader.Read() && reader.NodeType != XmlNodeType.EndElement) {
                var registration = ConfigurationSchema.Default.Deserialize<IConfigurationElement>(reader);
                Items.Add(registration);
            }
        }

        public void WriteXml(XmlWriter writer) {
            throw new System.NotImplementedException();
        }
    }
}