Mercurial > pub > ImplabNet
annotate Implab.ServiceHost/Unity/InjectionParameterElement.cs @ 275:6fefd5811b9b v3
refactoring
author | cin |
---|---|
date | Fri, 27 Apr 2018 16:57:30 +0300 |
parents | 22629bf26121 |
children | 963b17c275be |
rev | line source |
---|---|
273
79110a16cab7
Working on Unity xml configuration: Refactoring in progress
cin
parents:
272
diff
changeset
|
1 using System; |
270 | 2 using System.Xml.Serialization; |
3 | |
4 namespace Implab.ServiceHost.Unity { | |
275 | 5 public abstract class InjectionParameterElement : IInjectionParameter { |
270 | 6 |
7 [XmlAttribute("type")] | |
8 public string TypeName { get; set; } | |
272 | 9 |
275 | 10 public abstract void Visit(InjectionValueBuilder builder); |
270 | 11 } |
12 } |