IncludeElement.cs
12 lines
| 393 B
| text/x-csharp
|
CSharpLexer
cin
|
r269 | using System.Xml.Serialization; | |
namespace Implab.ServiceHost.Unity { | |||
[XmlRoot("include", Namespace = Schema.ContainerConfigurationNamespace)] | |||
cin
|
r277 | public class IncludeElement : AbstractContainerItem { | |
cin
|
r269 | [XmlAttribute("href")] | |
public string Href { get; set; } | |||
cin
|
r278 | public override void Visit(ContainerBuilder builder) { | |
builder.Include(Href); | |||
cin
|
r269 | } | |
} | |||
} |