Mercurial > pub > ImplabNet
diff Implab.ServiceHost/Unity/AssemblyElement.cs @ 273:79110a16cab7 v3
Working on Unity xml configuration: Refactoring in progress
author | cin |
---|---|
date | Thu, 26 Apr 2018 19:35:01 +0300 |
parents | ade80d94dfb5 |
children | 22629bf26121 |
line wrap: on
line diff
--- a/Implab.ServiceHost/Unity/AssemblyElement.cs Thu Apr 26 03:14:54 2018 +0300 +++ b/Implab.ServiceHost/Unity/AssemblyElement.cs Thu Apr 26 19:35:01 2018 +0300 @@ -3,11 +3,11 @@ namespace Implab.ServiceHost.Unity { [XmlRoot("assembly", Namespace = Schema.ContainerConfigurationNamespace)] - public class AssemblyElement : IConfigurationElement { + public class AssemblyElement : ContainerItemElement { [XmlAttribute("name")] public string AssemblyName { get; set; } - public void Visit(ConfigurationContext context) { + public override void Visit(ContainerContext context) { context.Visit(this); } }