Mercurial > pub > ImplabNet
annotate Implab.ServiceHost/Unity/InjectionParameterElement.cs @ 279:8714471e8d78 v3
Container configuration cleanup, RC2
| author | cin |
|---|---|
| date | Fri, 04 May 2018 18:12:42 +0300 |
| parents | 6691aff01de1 |
| children |
| 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 { | |
| 279 | 5 public abstract class InjectionParameterElement : IInjectionParameter { |
| 270 | 6 |
| 7 [XmlAttribute("type")] | |
| 8 public string TypeName { get; set; } | |
| 272 | 9 |
|
278
6691aff01de1
Implab: added XmlDefaultSeializer (SerializersPool is now obsolete)
cin
parents:
277
diff
changeset
|
10 public abstract void Visit(InjectionParameterBuilder builder); |
| 270 | 11 } |
| 12 } |
