annotate 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 |
rev |
line source |
269
|
1 using System.Xml.Serialization;
|
|
2
|
|
3 namespace Implab.ServiceHost.Unity
|
|
4 {
|
|
5 [XmlRoot("namespace", Namespace = Schema.ContainerConfigurationNamespace)]
|
277
|
6 public class NamespaceElement : AbstractContainerItem {
|
269
|
7
|
|
8 [XmlAttribute("name")]
|
|
9 public string Name { get; set; }
|
|
10
|
274
|
11 public override void Visit(ContainerBuilder context) {
|
270
|
12 context.Visit(this);
|
269
|
13 }
|
|
14 }
|
|
15 } |