IncludeElement.cs
12 lines
| 386 B
| text/x-csharp
|
CSharpLexer
cin
|
r269 | using System.Xml.Serialization; | |
namespace Implab.ServiceHost.Unity { | |||
[XmlRoot("include", Namespace = Schema.ContainerConfigurationNamespace)] | |||
public class IncludeElement : IConfigurationElement { | |||
[XmlAttribute("href")] | |||
public string Href { get; set; } | |||
public void Visit(ConfigurationContext context) { | |||
cin
|
r270 | context.Visit(this); | |
cin
|
r269 | } | |
} | |||
} |