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