Mercurial > pub > ImplabNet
diff Implab.ServiceHost/Unity/AssemblyElement.cs @ 277:963b17c275be v3
Refactoring
Added <array> element to injection parameters
Working on registrations of factories
author | cin |
---|---|
date | Sat, 28 Apr 2018 18:48:09 +0300 |
parents | 22629bf26121 |
children | 6691aff01de1 |
line wrap: on
line diff
--- a/Implab.ServiceHost/Unity/AssemblyElement.cs Sat Apr 28 00:11:38 2018 +0300 +++ b/Implab.ServiceHost/Unity/AssemblyElement.cs Sat Apr 28 18:48:09 2018 +0300 @@ -3,12 +3,12 @@ namespace Implab.ServiceHost.Unity { [XmlRoot("assembly", Namespace = Schema.ContainerConfigurationNamespace)] - public class AssemblyElement : ContainerItemElement { + public class AssemblyElement : AbstractContainerItem { [XmlAttribute("name")] public string AssemblyName { get; set; } - public override void Visit(ContainerBuilder context) { - context.Visit(this); + public override void Visit(ContainerBuilder builder) { + builder.Visit(this); } } } \ No newline at end of file