annotate Implab.ServiceHost/Unity/IncludeElement.cs @ 271:d4d437ec4483
v3
Working on Unity xml configuration
author |
cin |
date |
Wed, 25 Apr 2018 19:23:35 +0300 |
parents |
ade80d94dfb5 |
children |
79110a16cab7 |
rev |
line source |
269
|
1 using System.Xml.Serialization;
|
|
2
|
|
3 namespace Implab.ServiceHost.Unity {
|
|
4 [XmlRoot("include", Namespace = Schema.ContainerConfigurationNamespace)]
|
|
5 public class IncludeElement : IConfigurationElement {
|
|
6 [XmlAttribute("href")]
|
|
7 public string Href { get; set; }
|
|
8
|
|
9 public void Visit(ConfigurationContext context) {
|
270
|
10 context.Visit(this);
|
269
|
11 }
|
|
12 }
|
|
13 } |