Mercurial > pub > ImplabNet
comparison Implab.ServiceHost/Unity/ValueParameterElement.cs @ 281:e0916ddc9950 v3 tip
code cleanup and refactoring
| author | cin |
|---|---|
| date | Fri, 01 Jun 2018 21:35:24 +0300 |
| parents | 6691aff01de1 |
| children |
comparison
equal
deleted
inserted
replaced
| 280:f07be402ab02 | 281:e0916ddc9950 |
|---|---|
| 1 using System.ComponentModel; | 1 using System.ComponentModel; |
| 2 using System.Xml.Serialization; | 2 using System.Xml.Serialization; |
| 3 | 3 |
| 4 namespace Implab.ServiceHost.Unity { | 4 namespace Implab.ServiceHost.Unity { |
| 5 public class ValueParameterElement : InjectionParameterElement { | 5 public class ValueParameterElement : AbstractInjectionParameter { |
| 6 [XmlAttribute("value")] | 6 [XmlAttribute("value")] |
| 7 public string Value { get; set; } | 7 public string Value { get; set; } |
| 8 | 8 |
| 9 [XmlText] | 9 [XmlText] |
| 10 public string Text { get; set; } | 10 public string Text { get; set; } |
