Mercurial > pub > ImplabNet
comparison Implab.ServiceHost/Unity/NamespaceElement.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 |
---|---|
6 public class NamespaceElement : ContainerItemElement { | 6 public class NamespaceElement : ContainerItemElement { |
7 | 7 |
8 [XmlAttribute("name")] | 8 [XmlAttribute("name")] |
9 public string Name { get; set; } | 9 public string Name { get; set; } |
10 | 10 |
11 public override void Visit(ContainerContext context) { | 11 public override void Visit(ContainerBuilder context) { |
12 context.Visit(this); | 12 context.Visit(this); |
13 } | 13 } |
14 } | 14 } |
15 } | 15 } |