Mercurial > pub > ImplabNet
annotate Implab.ServiceHost/Unity/IncludeElement.cs @ 274:22629bf26121 v3
Unity xml configuration, alpha2
author | cin |
---|---|
date | Fri, 27 Apr 2018 04:47:52 +0300 |
parents | 79110a16cab7 |
children | 963b17c275be |
rev | line source |
---|---|
269 | 1 using System.Xml.Serialization; |
2 | |
3 namespace Implab.ServiceHost.Unity { | |
4 [XmlRoot("include", Namespace = Schema.ContainerConfigurationNamespace)] | |
273
79110a16cab7
Working on Unity xml configuration: Refactoring in progress
cin
parents:
270
diff
changeset
|
5 public class IncludeElement : ContainerItemElement { |
269 | 6 [XmlAttribute("href")] |
7 public string Href { get; set; } | |
8 | |
274 | 9 public override void Visit(ContainerBuilder context) { |
270 | 10 context.Visit(this); |
269 | 11 } |
12 } | |
13 } |