267
|
1 using Implab.Xml;
|
|
2 using System.Collections.Generic;
|
|
3 using System.Xml;
|
|
4 using System.Xml.Schema;
|
|
5 using System.Xml.Serialization;
|
|
6
|
|
7 namespace Implab.ServiceHost.Unity {
|
|
8 [XmlRoot("container", Namespace = Schema.ContainerConfigurationNamespace)]
|
277
|
9 public class ContainerElement : AbstractContainerItem {
|
267
|
10
|
277
|
11 public List<AbstractContainerItem> Items { get; set; } = new List<AbstractContainerItem>();
|
267
|
12
|
274
|
13 public override void Visit(ContainerBuilder context) {
|
277
|
14 if (Items != null)
|
|
15 foreach(var item in Items)
|
|
16 item.Visit(context);
|
267
|
17 }
|
|
18 }
|
|
19 } |