Mercurial > pub > ImplabNet
comparison Implab.ServiceHost/Unity/AssemblyElement.cs @ 274:22629bf26121 v3
Unity xml configuration, alpha2
author | cin |
---|---|
date | Fri, 27 Apr 2018 04:47:52 +0300 |
parents | 79110a16cab7 |
children | 963b17c275be |
comparison
equal
deleted
inserted
replaced
273:79110a16cab7 | 274:22629bf26121 |
---|---|
5 [XmlRoot("assembly", Namespace = Schema.ContainerConfigurationNamespace)] | 5 [XmlRoot("assembly", Namespace = Schema.ContainerConfigurationNamespace)] |
6 public class AssemblyElement : ContainerItemElement { | 6 public class AssemblyElement : ContainerItemElement { |
7 [XmlAttribute("name")] | 7 [XmlAttribute("name")] |
8 public string AssemblyName { get; set; } | 8 public string AssemblyName { get; set; } |
9 | 9 |
10 public override void Visit(ContainerContext context) { | 10 public override void Visit(ContainerBuilder context) { |
11 context.Visit(this); | 11 context.Visit(this); |
12 } | 12 } |
13 } | 13 } |
14 } | 14 } |