Mercurial > pub > ImplabNet
comparison Implab.ServiceHost/Unity/InjectionParameterElement.cs @ 281:e0916ddc9950 v3 tip
code cleanup and refactoring
| author | cin |
|---|---|
| date | Fri, 01 Jun 2018 21:35:24 +0300 |
| parents | f07be402ab02 |
| children |
comparison
equal
deleted
inserted
replaced
| 280:f07be402ab02 | 281:e0916ddc9950 |
|---|---|
| 1 using System; | |
| 2 using System.Xml.Serialization; | |
| 3 | |
| 4 namespace Implab.ServiceHost.Unity { | |
| 5 public abstract class InjectionParameterElement : IInjectionParameter { | |
| 6 | |
| 7 [XmlAttribute("type")] | |
| 8 public string TypeName { get; set; } | |
| 9 | |
| 10 public abstract void Visit(InjectionParameterBuilder builder); | |
| 11 } | |
| 12 } |
