comparison Implab.ServiceHost/Unity/AbstractRegistration.cs @ 272:9d1cca834b05 v3

preview version of Unity xml configuration
author cin
date Thu, 26 Apr 2018 03:14:54 +0300
parents d4d437ec4483
children 79110a16cab7
comparison
equal deleted inserted replaced
271:d4d437ec4483 272:9d1cca834b05
25 /// A type specification for the service registration, 25 /// A type specification for the service registration,
26 /// </summary> 26 /// </summary>
27 [XmlAttribute("provides")] 27 [XmlAttribute("provides")]
28 public string ProvidesType { get; set; } 28 public string ProvidesType { get; set; }
29 29
30 public void Visit(ConfigurationContext context) { 30 public abstract void Visit(ConfigurationContext context);
31 context.Visit(this);
32 }
33 } 31 }
34 } 32 }