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