using System.Xml.Serialization; namespace Implab.ServiceHost.Unity { [XmlRoot("namespace", Namespace = Schema.ContainerConfigurationNamespace)] public class NamespaceElement : IConfigurationElement { [XmlAttribute("name")] public string Name { get; set; } public void Visit(ConfigurationContext context) { throw new System.NotImplementedException(); } } }