ContainerElement.cs
16 lines
| 515 B
| text/x-csharp
|
CSharpLexer
|
|
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)] | |||
|
|
r273 | public class ContainerElement : ContainerItemElement { | |
|
|
r267 | ||
|
|
r273 | public List<ContainerItemElement> Items {get; set; } = new List<ContainerItemElement>(); | |
|
|
r267 | ||
|
|
r273 | public override void Visit(ContainerContext context) { | |
| context.Visit(this); | |||
|
|
r267 | } | |
| } | |||
| } |
