annotate Implab.ServiceHost/Unity/PropertyInjectionElement.cs @ 270:ade80d94dfb5
v3
Working on Unity container xml configuration
author |
cin |
date |
Wed, 25 Apr 2018 04:44:40 +0300 |
parents |
|
children |
9d1cca834b05 |
rev |
line source |
270
|
1 using System.Xml.Serialization;
|
|
2
|
|
3 namespace Implab.ServiceHost.Unity {
|
|
4 public class PropertyInjectionElement : AbstractInjectionElement {
|
|
5
|
|
6 [XmlElement("dependency", typeof(DependencyParameterElement))]
|
|
7 [XmlElement("value", typeof(ValueParameterElement))]
|
|
8 [XmlElement("serialized", typeof(SerializedParameterElement))]
|
|
9 [XmlElement("default", typeof(DefaultParameterElement))]
|
|
10 public InjectionParameterElement Value { get; set; }
|
|
11 }
|
|
12 } |