Mercurial > pub > ImplabNet
annotate Implab.ServiceHost/Unity/AssemblyElement.cs @ 275:6fefd5811b9b v3
refactoring
| author | cin | 
|---|---|
| date | Fri, 27 Apr 2018 16:57:30 +0300 | 
| parents | 22629bf26121 | 
| children | 963b17c275be | 
| rev | line source | 
|---|---|
| 269 | 1 using System.Xml.Serialization; | 
| 2 | |
| 3 namespace Implab.ServiceHost.Unity | |
| 4 { | |
| 5 [XmlRoot("assembly", Namespace = Schema.ContainerConfigurationNamespace)] | |
| 273 
79110a16cab7
Working on Unity xml configuration: Refactoring in progress
 cin parents: 
270diff
changeset | 6 public class AssemblyElement : ContainerItemElement { | 
| 269 | 7 [XmlAttribute("name")] | 
| 8 public string AssemblyName { get; set; } | |
| 9 | |
| 274 | 10 public override void Visit(ContainerBuilder context) { | 
| 270 | 11 context.Visit(this); | 
| 269 | 12 } | 
| 13 } | |
| 14 } | 
