Mercurial > pub > ImplabNet
annotate Implab.ServiceHost/Unity/ValueParameterElement.cs @ 276:b4e0f81c7425 v3
container configuration docs
author | cin |
---|---|
date | Sat, 28 Apr 2018 00:11:38 +0300 |
parents | 6fefd5811b9b |
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:
272
diff
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 } |