view Implab.ServiceHost/Unity/NamespaceElement.cs @ 278:6691aff01de1 v3

Implab: added XmlDefaultSeializer (SerializersPool is now obsolete) Implab.ServiceHost: rewritten TypeReference (added support for nested types), stable API
author cin
date Thu, 03 May 2018 09:59:44 +0300
parents 963b17c275be
children
line wrap: on
line source

using System.Xml.Serialization;

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

        [XmlAttribute("name")]
        public string Name { get; set; }

        public override void Visit(ContainerBuilder builder) {
            builder.AddNamespace(Name);
        }
    }
}