ContainerElement.cs
16 lines
| 516 B
| text/x-csharp
|
CSharpLexer
cin
|
r267 | using Implab.Xml; | |
using System.Collections.Generic; | |||
using System.Xml; | |||
using System.Xml.Schema; | |||
using System.Xml.Serialization; | |||
namespace Implab.ServiceHost.Unity { | |||
[XmlRoot("container", Namespace = Schema.ContainerConfigurationNamespace)] | |||
cin
|
r273 | public class ContainerElement : ContainerItemElement { | |
cin
|
r267 | ||
cin
|
r274 | public List<ContainerItemElement> Items { get; set; } = new List<ContainerItemElement>(); | |
cin
|
r267 | ||
cin
|
r274 | public override void Visit(ContainerBuilder context) { | |
cin
|
r273 | context.Visit(this); | |
cin
|
r267 | } | |
} | |||
} |