Mercurial > pub > ImplabNet
comparison 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 |
comparison
equal
deleted
inserted
replaced
| 273:79110a16cab7 | 274:22629bf26121 |
|---|---|
| 4 [XmlRoot("include", Namespace = Schema.ContainerConfigurationNamespace)] | 4 [XmlRoot("include", Namespace = Schema.ContainerConfigurationNamespace)] |
| 5 public class IncludeElement : ContainerItemElement { | 5 public class IncludeElement : ContainerItemElement { |
| 6 [XmlAttribute("href")] | 6 [XmlAttribute("href")] |
| 7 public string Href { get; set; } | 7 public string Href { get; set; } |
| 8 | 8 |
| 9 public override void Visit(ContainerContext context) { | 9 public override void Visit(ContainerBuilder context) { |
| 10 context.Visit(this); | 10 context.Visit(this); |
| 11 } | 11 } |
| 12 } | 12 } |
| 13 } | 13 } |
