Mercurial > pub > ImplabNet
view Implab.ServiceHost/Unity/NamespaceElement.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 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 context) { context.Visit(this); } } }
