Mercurial > pub > ImplabNet
annotate Implab.ServiceHost/Unity/InjectionParameterElement.cs @ 277:963b17c275be v3
Refactoring
Added <array> element to injection parameters
Working on registrations of factories
author | cin |
---|---|
date | Sat, 28 Apr 2018 18:48:09 +0300 |
parents | 6fefd5811b9b |
children | 6691aff01de1 |
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 { | |
277 | 5 public abstract class InjectionParameterElement { |
270 | 6 |
7 [XmlAttribute("type")] | |
8 public string TypeName { get; set; } | |
272 | 9 |
275 | 10 public abstract void Visit(InjectionValueBuilder builder); |
270 | 11 } |
12 } |