comparison Implab.ServiceHost/Unity/NamespaceElement.cs @ 278:6691aff01de1 v3

Implab: added XmlDefaultSeializer (SerializersPool is now obsolete) Implab.ServiceHost: rewritten TypeReference (added support for nested types), stable API
author cin
date Thu, 03 May 2018 09:59:44 +0300
parents 963b17c275be
children
comparison
equal deleted inserted replaced
277:963b17c275be 278:6691aff01de1
6 public class NamespaceElement : AbstractContainerItem { 6 public class NamespaceElement : AbstractContainerItem {
7 7
8 [XmlAttribute("name")] 8 [XmlAttribute("name")]
9 public string Name { get; set; } 9 public string Name { get; set; }
10 10
11 public override void Visit(ContainerBuilder context) { 11 public override void Visit(ContainerBuilder builder) {
12 context.Visit(this); 12 builder.AddNamespace(Name);
13 } 13 }
14 } 14 }
15 } 15 }