##// END OF EJS Templates
Added IObservable to TraceRegistry
Added IObservable to TraceRegistry

File last commit:

r278:6691aff01de1 v3
r288:90cef6117ced v3
Show More
NamespaceElement.cs
14 lines | 403 B | text/x-csharp | CSharpLexer
using System.Xml.Serialization;
namespace Implab.ServiceHost.Unity
{
[XmlRoot("namespace", Namespace = Schema.ContainerConfigurationNamespace)]
public class NamespaceElement : AbstractContainerItem {
[XmlAttribute("name")]
public string Name { get; set; }
public override void Visit(ContainerBuilder builder) {
builder.AddNamespace(Name);
}
}
}