NamespaceElement.cs
14 lines
| 414 B
| text/x-csharp
|
CSharpLexer
cin
|
r269 | using System.Xml.Serialization; | |
namespace Implab.ServiceHost.Unity | |||
{ | |||
[XmlRoot("namespace", Namespace = Schema.ContainerConfigurationNamespace)] | |||
public class NamespaceElement : IConfigurationElement { | |||
[XmlAttribute("name")] | |||
public string Name { get; set; } | |||
public void Visit(ConfigurationContext context) { | |||
throw new System.NotImplementedException(); | |||
} | |||
} | |||
} |