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