comparison Implab.ServiceHost/Unity/AssemblyElement.cs @ 270:ade80d94dfb5 v3

Working on Unity container xml configuration
author cin
date Wed, 25 Apr 2018 04:44:40 +0300
parents ff581cff7003
children 79110a16cab7
comparison
equal deleted inserted replaced
269:ff581cff7003 270:ade80d94dfb5
6 public class AssemblyElement : IConfigurationElement { 6 public class AssemblyElement : IConfigurationElement {
7 [XmlAttribute("name")] 7 [XmlAttribute("name")]
8 public string AssemblyName { get; set; } 8 public string AssemblyName { get; set; }
9 9
10 public void Visit(ConfigurationContext context) { 10 public void Visit(ConfigurationContext context) {
11 throw new System.NotImplementedException(); 11 context.Visit(this);
12 } 12 }
13 } 13 }
14 } 14 }