Mercurial > pub > ImplabNet
comparison Implab.ServiceHost/Unity/SerializedParameterElement.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 |
|---|---|
| 3 using System.Xml.Schema; | 3 using System.Xml.Schema; |
| 4 using System.Xml.Serialization; | 4 using System.Xml.Serialization; |
| 5 | 5 |
| 6 namespace Implab.ServiceHost.Unity | 6 namespace Implab.ServiceHost.Unity |
| 7 { | 7 { |
| 8 public class SerializedParameterElement : InjectionParameterElement { | 8 public class SerializedParameterElement : AbstractInjectionParameter { |
| 9 [XmlAttribute("href")] | 9 [XmlAttribute("href")] |
| 10 public string Location { get; set; } | 10 public string Location { get; set; } |
| 11 | 11 |
| 12 [XmlAnyElement] | 12 [XmlAnyElement] |
| 13 public XmlElement[] Content { get; set; } | 13 public XmlElement[] Content { get; set; } |
